gigwa-import-and-qc

gigwa-import-and-qc is a skill for Claude Code, Codex from gkanogiannis/Gigwa-MCP. It costs 219 tokens per session (1,514 once invoked), scanned A, original, Apache-2.0.

A workflow for importing genetic genotype data into Gigwa, a database for genetic variation data, and then checking its quality. It supports DArTseq spreadsheet reports and VCF files, common formats for genetic marker data.

In plain words
What is it for?
Loading a DArTseq XLSX report or VCF file into a chosen Gigwa database, project, and run, with optional genome anchoring and a final clean/not-clean assessment.
Why use it?
It checks whether a new import is clean before the data is used for analysis. It combines loading the data with read-only quality checks and an import audit.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Loading a DArTseq XLSX report or VCF file into a chosen Gigwa database, project, and run, with optional genome anchoring and a final clean/not-clean assessment.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/gkanogiannis/gigwa-mcp/gigwa-import-and-qc
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add gkanogiannis/Gigwa-MCP --skill gigwa-import-and-qc
Clone the repo
git clone --depth 1 https://github.com/gkanogiannis/Gigwa-MCP

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for gigwa-import-and-qc

README.md
[![agentmods](https://agentmods.dev/badge/skills/gkanogiannis/gigwa-mcp/gigwa-import-and-qc/github.svg)](https://agentmods.dev/skills/gkanogiannis/gigwa-mcp/gigwa-import-and-qc)
Your own site
<a href="https://agentmods.dev/skills/gkanogiannis/gigwa-mcp/gigwa-import-and-qc"><img src="https://agentmods.dev/badge/skills/gkanogiannis/gigwa-mcp/gigwa-import-and-qc/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for gigwa-import-and-qc

Your own site · 80×15
<a href="https://agentmods.dev/skills/gkanogiannis/gigwa-mcp/gigwa-import-and-qc"><img src="https://agentmods.dev/badge/skills/gkanogiannis/gigwa-mcp/gigwa-import-and-qc.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 219 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,514 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00219 $0.01514
Opus 5 $0.00110 $0.00757
Sonnet 5 $0.00044 $0.00303
Haiku 4.5 $0.00022 $0.00151

Measured 11d ago against content hash c5c29efd0074, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

gigwa-import-and-qc scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/gigwa-import-and-qc/SKILL.md · 100 lines

How it starts

The opening of the file, as written. The whole thing — 100 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Gigwa import + QC

Overview

Load a genotype dataset into a Gigwa instance and immediately check whether the import is trustworthy. This chains a single import call with the full read-only QC suite and an import-quality audit, then ends with a clean / not-clean judgement. It drives the gigwa-mcp MCP server's tools — the tools do the work; this skill sequences them.

When to use / when not

  • Use when the user is ingesting new data: a DArTseq SNP/Silico xlsx report or a .vcf/.vcf.gz, and wants confidence the import worked.
  • Don't use to re-QC a run that is already imported — use gigwa-qc-triage instead (same QC steps, no import). For diversity/structure after QC passes, use gigwa-diversity-report.

Prerequisites

  • The gigwa-mcp server is connected and gigwa_server_info succeeds.
  • Import writes data, so the server must be authenticated: GIGWA_USER / GIGWA_PASS (anonymous access is read-only and cannot import).
  • Input files are on a path the server process can read.
  • Decide the target coordinates up front: module (database), project, run.

Decide the branch

Input Tool Key file param
DArTseq xlsx (SNP and/or SilicoDArT) import_dartseq snp_xlsx, silico_xlsx
VCF (.vcf / .vcf.gz) import_vcf vcf_path

Optional: genome-anchor DArTseq first

DArTseq tags are unplaced by default. To assign genomic positions, align the tag sequences to a reference before import:

  1. map_dartseq_to_reference(snp_xlsx, reference_fasta, min_mapq=20, preset="sr", backend="auto") → writes dartseq_positions.csv.
  2. Pass that CSV back as import_dartseq(..., positions_csv="…/dartseq_positions.csv"), or let import_dartseq(..., reference_fasta=…) do the alignment inline.

Skip this whole step for VCF (already positioned) or when unplaced markers are fine.

Step-by-step workflow

  1. Import.
    • DArTseq: import_dartseq(module, project, run, snp_xlsx=…, silico_xlsx=…, ploidy=2, skip_monomorphic=False, clear_project_data=False).
    • VCF: import_vcf(vcf_path, module, project, run, ploidy=2).
    • Long imports: pass wait=False to get a progress token, then poll with get_import_progress(progress_token) and cancel with abort_import(progress_token) if needed.
  2. Confirm counts with list_variant_sets(). Read back the new run's variant and call-set counts, and capture its exact variantSetDbId (MODULE§project§run) — every step below needs it.
  3. QC sweep (all take the variant_set_db_id from step 2):
    • qc_call_rate(variant_set_db_id) — worst samples/markers.
    • qc_heterozygosity(variant_set_db_id) — outliers (heed the high-Ho warning: inflated heterozygosity often means contamination or a miscoded import).
    • qc_maf_filter(variant_set_db_id) — how many markers a MAF/missingness filter drops.
    • qc_duplicate_accessions(variant_set_db_id) — clones / mislabelled duplicates.
  4. Audit with audit_import_quality(variant_set_db_id) — catches genotype-encoding artifacts (e.g. everything called, no heterozygotes, suspicious monomorphic fraction).
  5. Summarise flagged samples/markers and give a clear verdict on whether the import looks clean.

Read the full file on GitHub · 100 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 100 lines · 219 tokens per session scan A c5c29efd0074

Subscribe to this mod's changes

gigwa-import-and-qc is a skill published in the GitHub repository gkanogiannis/Gigwa-MCP (0 stars, last pushed 2d ago), licensed Apache-2.0. It adds 219 tokens to every session and 1,514 once invoked, about $0.0011 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

instrument-data-to-allotrope

Convert laboratory instrument output files (PDF, CSV, Excel, TXT) to Allotrope Simple Model (ASM) JSON format or flattened 2D CSV. Use this skill when scientists need to standardize instrument data for LIMS systems, data lakes, or downstream analysis. Supports auto-detection of instrument types. Outputs include full…

anthropics/knowledge-work-plugins · 123 tokens

matlab

Build, review, migrate, and safely plan MATLAB or GNU Octave numerical workflows, including arrays, tabular/time data, tests, projects, graphics, MAT files, and explicit Python interoperability.

K-Dense-AI/scientific-agent-skills · 42 tokens

exploratory-data-analysis

Perform bounded, local exploratory analysis of explicitly supported scientific files. Use for redacted CSV/TSV/JSON profiles; optional NumPy, HDF5, FASTA/FASTQ, and basic image metadata inspection; missingness/leakage audits; outlier and transformation sensitivity; and rigorous EDA report scaffolds. Other domain…

K-Dense-AI/scientific-agent-skills · 83 tokens

phylogenetics

Build and analyze phylogenetic trees using MAFFT (multiple alignment), IQ-TREE 2 (maximum likelihood), and FastTree (fast NJ/ML). Visualize with ETE3 or FigTree. For evolutionary analysis, microbial genomics, viral phylodynamics, protein family analysis, and molecular clock studies.

K-Dense-AI/scientific-agent-skills · 68 tokens

research-engineer

An uncompromising Academic Research Engineer. Operates with absolute scientific rigor, objective criticism, and zero flair. Focuses on theoretical correctness, formal verification, and optimal implementation across any required technology.

davila7/claude-code-templates · 43 tokens

mapping-to-snomed

Maps clinical concept spans extracted by OpenMed to SNOMED CT concepts through a USER-SUPPLIED terminology server (the user's own Ontoserver, Snowstorm, or UMLS/UTS), never a bundled vocabulary. Use when the user wants to code findings, disorders, procedures, body structures, or substances to SNOMED CT, run an ECL…

maziyarpanahi/openmed · 205 tokens