encode-toolkit 0.3.0b5__tar.gz → 0.3.0b8__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- encode_toolkit-0.3.0b8/.claude-plugin/marketplace.json +18 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/.claude-plugin/plugin.json +8 -3
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/.gitignore +13 -0
- encode_toolkit-0.3.0b8/.mcp.json +3 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/PKG-INFO +21 -20
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/README.md +20 -19
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/package.json +1 -1
- encode_toolkit-0.3.0b8/plugin/.claude-plugin/plugin.json +21 -0
- encode_toolkit-0.3.0b8/plugin/.mcp.json +9 -0
- encode_toolkit-0.3.0b8/plugin/CLAUDE.md +168 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/batch-analysis/SKILL.md +1 -7
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/bioinformatics-installer/SKILL.md +1 -10
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/cellxgene-context/SKILL.md +1 -6
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/clinvar-annotation/SKILL.md +1 -6
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/gtex-expression/SKILL.md +1 -6
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/gwas-catalog/SKILL.md +1 -6
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/jaspar-motifs/SKILL.md +1 -6
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/motif-analysis/SKILL.md +1 -6
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/peak-annotation/SKILL.md +1 -6
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-atacseq/SKILL.md +1 -8
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-chipseq/SKILL.md +1 -7
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-cutandrun/SKILL.md +1 -6
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-dnaseseq/SKILL.md +1 -7
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-hic/SKILL.md +1 -6
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-rnaseq/SKILL.md +1 -7
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-wgbs/SKILL.md +1 -6
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/scientific-writing/SKILL.md +1 -9
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/visualization-workflow/SKILL.md +1 -7
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/pyproject.toml +1 -1
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/server.json +4 -4
- encode_toolkit-0.3.0b8/skills/accessibility-aggregation/SKILL.md +357 -0
- encode_toolkit-0.3.0b8/skills/accessibility-aggregation/references/atac-vs-dnase.md +121 -0
- encode_toolkit-0.3.0b8/skills/accessibility-aggregation/references/literature.md +110 -0
- encode_toolkit-0.3.0b8/skills/accessibility-aggregation/scripts/validate_peaks.py +309 -0
- encode_toolkit-0.3.0b8/skills/batch-analysis/SKILL.md +579 -0
- encode_toolkit-0.3.0b8/skills/batch-analysis/references/literature.md +200 -0
- encode_toolkit-0.3.0b8/skills/bioinformatics-installer/SKILL.md +721 -0
- encode_toolkit-0.3.0b8/skills/bioinformatics-installer/environments/atacseq-env.yml +30 -0
- encode_toolkit-0.3.0b8/skills/bioinformatics-installer/environments/chipseq-env.yml +35 -0
- encode_toolkit-0.3.0b8/skills/bioinformatics-installer/environments/cutandrun-env.yml +34 -0
- encode_toolkit-0.3.0b8/skills/bioinformatics-installer/environments/dnaseseq-env.yml +31 -0
- encode_toolkit-0.3.0b8/skills/bioinformatics-installer/environments/hic-env.yml +36 -0
- encode_toolkit-0.3.0b8/skills/bioinformatics-installer/environments/rnaseq-env.yml +29 -0
- encode_toolkit-0.3.0b8/skills/bioinformatics-installer/environments/wgbs-env.yml +29 -0
- encode_toolkit-0.3.0b8/skills/bioinformatics-installer/references/literature.md +123 -0
- encode_toolkit-0.3.0b8/skills/bioinformatics-installer/scripts/install-nextflow.sh +137 -0
- encode_toolkit-0.3.0b8/skills/bioinformatics-installer/scripts/install-python-packages.sh +107 -0
- encode_toolkit-0.3.0b8/skills/bioinformatics-installer/scripts/install-r-packages.R +151 -0
- encode_toolkit-0.3.0b8/skills/cellxgene-context/SKILL.md +443 -0
- encode_toolkit-0.3.0b8/skills/cellxgene-context/references/literature.md +201 -0
- encode_toolkit-0.3.0b8/skills/cite-encode/SKILL.md +643 -0
- encode_toolkit-0.3.0b8/skills/cite-encode/references/literature.md +56 -0
- encode_toolkit-0.3.0b8/skills/clinvar-annotation/SKILL.md +444 -0
- encode_toolkit-0.3.0b8/skills/clinvar-annotation/references/literature.md +212 -0
- encode_toolkit-0.3.0b8/skills/compare-biosamples/SKILL.md +502 -0
- encode_toolkit-0.3.0b8/skills/compare-biosamples/references/literature.md +210 -0
- encode_toolkit-0.3.0b8/skills/cross-reference/SKILL.md +687 -0
- encode_toolkit-0.3.0b8/skills/cross-reference/references/literature.md +210 -0
- encode_toolkit-0.3.0b8/skills/data-provenance/SKILL.md +646 -0
- encode_toolkit-0.3.0b8/skills/data-provenance/references/literature.md +75 -0
- encode_toolkit-0.3.0b8/skills/disease-research/SKILL.md +456 -0
- encode_toolkit-0.3.0b8/skills/disease-research/references/literature.md +94 -0
- encode_toolkit-0.3.0b8/skills/download-encode/SKILL.md +476 -0
- encode_toolkit-0.3.0b8/skills/download-encode/references/literature.md +164 -0
- encode_toolkit-0.3.0b8/skills/ensembl-annotation/SKILL.md +363 -0
- encode_toolkit-0.3.0b8/skills/ensembl-annotation/references/literature.md +202 -0
- encode_toolkit-0.3.0b8/skills/epigenome-profiling/SKILL.md +607 -0
- encode_toolkit-0.3.0b8/skills/epigenome-profiling/references/literature.md +236 -0
- encode_toolkit-0.3.0b8/skills/functional-screen-analysis/SKILL.md +703 -0
- encode_toolkit-0.3.0b8/skills/functional-screen-analysis/references/literature.md +121 -0
- encode_toolkit-0.3.0b8/skills/geo-connector/SKILL.md +383 -0
- encode_toolkit-0.3.0b8/skills/geo-connector/references/literature.md +200 -0
- encode_toolkit-0.3.0b8/skills/gnomad-variants/SKILL.md +384 -0
- encode_toolkit-0.3.0b8/skills/gnomad-variants/references/literature.md +212 -0
- encode_toolkit-0.3.0b8/skills/gtex-expression/SKILL.md +447 -0
- encode_toolkit-0.3.0b8/skills/gtex-expression/references/literature.md +201 -0
- encode_toolkit-0.3.0b8/skills/gwas-catalog/SKILL.md +540 -0
- encode_toolkit-0.3.0b8/skills/gwas-catalog/references/literature.md +252 -0
- encode_toolkit-0.3.0b8/skills/hic-aggregation/SKILL.md +560 -0
- encode_toolkit-0.3.0b8/skills/hic-aggregation/references/literature.md +99 -0
- encode_toolkit-0.3.0b8/skills/hic-aggregation/references/loop-caller-comparison.md +129 -0
- encode_toolkit-0.3.0b8/skills/hic-aggregation/scripts/validate_loops.py +276 -0
- encode_toolkit-0.3.0b8/skills/histone-aggregation/SKILL.md +387 -0
- encode_toolkit-0.3.0b8/skills/histone-aggregation/references/broad-vs-narrow.md +104 -0
- encode_toolkit-0.3.0b8/skills/histone-aggregation/references/histone-marks-reference.md +1442 -0
- encode_toolkit-0.3.0b8/skills/histone-aggregation/references/literature.md +106 -0
- encode_toolkit-0.3.0b8/skills/histone-aggregation/references/signal-filtering.md +127 -0
- encode_toolkit-0.3.0b8/skills/histone-aggregation/scripts/validate_peaks.py +289 -0
- encode_toolkit-0.3.0b8/skills/integrative-analysis/SKILL.md +572 -0
- encode_toolkit-0.3.0b8/skills/integrative-analysis/references/literature.md +243 -0
- encode_toolkit-0.3.0b8/skills/jaspar-motifs/SKILL.md +548 -0
- encode_toolkit-0.3.0b8/skills/jaspar-motifs/references/literature.md +200 -0
- encode_toolkit-0.3.0b8/skills/liftover-coordinates/SKILL.md +536 -0
- encode_toolkit-0.3.0b8/skills/liftover-coordinates/references/literature.md +76 -0
- encode_toolkit-0.3.0b8/skills/methylation-aggregation/SKILL.md +537 -0
- encode_toolkit-0.3.0b8/skills/methylation-aggregation/references/hmr-definitions.md +86 -0
- encode_toolkit-0.3.0b8/skills/methylation-aggregation/references/literature.md +101 -0
- encode_toolkit-0.3.0b8/skills/methylation-aggregation/scripts/validate_methylation.py +409 -0
- encode_toolkit-0.3.0b8/skills/motif-analysis/SKILL.md +476 -0
- encode_toolkit-0.3.0b8/skills/motif-analysis/references/literature.md +262 -0
- encode_toolkit-0.3.0b8/skills/multi-omics-integration/SKILL.md +592 -0
- encode_toolkit-0.3.0b8/skills/multi-omics-integration/references/literature.md +116 -0
- encode_toolkit-0.3.0b8/skills/peak-annotation/SKILL.md +533 -0
- encode_toolkit-0.3.0b8/skills/peak-annotation/references/literature.md +226 -0
- encode_toolkit-0.3.0b8/skills/pipeline-atacseq/SKILL.md +440 -0
- encode_toolkit-0.3.0b8/skills/pipeline-atacseq/references/01-qc-trimming.md +55 -0
- encode_toolkit-0.3.0b8/skills/pipeline-atacseq/references/02-alignment.md +69 -0
- encode_toolkit-0.3.0b8/skills/pipeline-atacseq/references/03-tn5-filtering.md +75 -0
- encode_toolkit-0.3.0b8/skills/pipeline-atacseq/references/04-peak-calling.md +77 -0
- encode_toolkit-0.3.0b8/skills/pipeline-atacseq/references/05-qc-metrics.md +92 -0
- encode_toolkit-0.3.0b8/skills/pipeline-atacseq/references/literature.md +196 -0
- encode_toolkit-0.3.0b8/skills/pipeline-atacseq/scripts/Dockerfile +48 -0
- encode_toolkit-0.3.0b8/skills/pipeline-atacseq/scripts/main.nf +323 -0
- encode_toolkit-0.3.0b8/skills/pipeline-atacseq/scripts/nextflow.config +104 -0
- encode_toolkit-0.3.0b8/skills/pipeline-chipseq/SKILL.md +433 -0
- encode_toolkit-0.3.0b8/skills/pipeline-chipseq/references/01-qc-trimming.md +59 -0
- encode_toolkit-0.3.0b8/skills/pipeline-chipseq/references/02-alignment.md +71 -0
- encode_toolkit-0.3.0b8/skills/pipeline-chipseq/references/03-filtering.md +72 -0
- encode_toolkit-0.3.0b8/skills/pipeline-chipseq/references/04-analysis.md +78 -0
- encode_toolkit-0.3.0b8/skills/pipeline-chipseq/references/05-qc-metrics.md +80 -0
- encode_toolkit-0.3.0b8/skills/pipeline-chipseq/references/literature.md +194 -0
- encode_toolkit-0.3.0b8/skills/pipeline-chipseq/scripts/Dockerfile +47 -0
- encode_toolkit-0.3.0b8/skills/pipeline-chipseq/scripts/main.nf +286 -0
- encode_toolkit-0.3.0b8/skills/pipeline-chipseq/scripts/nextflow.config +101 -0
- encode_toolkit-0.3.0b8/skills/pipeline-cutandrun/SKILL.md +457 -0
- encode_toolkit-0.3.0b8/skills/pipeline-cutandrun/references/01-qc-trimming.md +102 -0
- encode_toolkit-0.3.0b8/skills/pipeline-cutandrun/references/02-bowtie2-alignment.md +138 -0
- encode_toolkit-0.3.0b8/skills/pipeline-cutandrun/references/03-filtering-spikein.md +154 -0
- encode_toolkit-0.3.0b8/skills/pipeline-cutandrun/references/04-seacr-peaks.md +154 -0
- encode_toolkit-0.3.0b8/skills/pipeline-cutandrun/references/05-qc-metrics.md +137 -0
- encode_toolkit-0.3.0b8/skills/pipeline-cutandrun/references/literature.md +152 -0
- encode_toolkit-0.3.0b8/skills/pipeline-cutandrun/scripts/Dockerfile +68 -0
- encode_toolkit-0.3.0b8/skills/pipeline-cutandrun/scripts/main.nf +400 -0
- encode_toolkit-0.3.0b8/skills/pipeline-cutandrun/scripts/nextflow.config +101 -0
- encode_toolkit-0.3.0b8/skills/pipeline-dnaseseq/SKILL.md +423 -0
- encode_toolkit-0.3.0b8/skills/pipeline-dnaseseq/references/01-qc-trimming.md +88 -0
- encode_toolkit-0.3.0b8/skills/pipeline-dnaseseq/references/02-alignment.md +111 -0
- encode_toolkit-0.3.0b8/skills/pipeline-dnaseseq/references/03-filtering.md +124 -0
- encode_toolkit-0.3.0b8/skills/pipeline-dnaseseq/references/04-hotspot-calling.md +139 -0
- encode_toolkit-0.3.0b8/skills/pipeline-dnaseseq/references/05-footprinting.md +146 -0
- encode_toolkit-0.3.0b8/skills/pipeline-dnaseseq/references/literature.md +143 -0
- encode_toolkit-0.3.0b8/skills/pipeline-dnaseseq/scripts/Dockerfile +67 -0
- encode_toolkit-0.3.0b8/skills/pipeline-dnaseseq/scripts/main.nf +317 -0
- encode_toolkit-0.3.0b8/skills/pipeline-dnaseseq/scripts/nextflow.config +101 -0
- encode_toolkit-0.3.0b8/skills/pipeline-guide/SKILL.md +695 -0
- encode_toolkit-0.3.0b8/skills/pipeline-guide/references/literature.md +82 -0
- encode_toolkit-0.3.0b8/skills/pipeline-hic/SKILL.md +420 -0
- encode_toolkit-0.3.0b8/skills/pipeline-hic/references/01-qc-trimming.md +84 -0
- encode_toolkit-0.3.0b8/skills/pipeline-hic/references/02-alignment.md +102 -0
- encode_toolkit-0.3.0b8/skills/pipeline-hic/references/03-pair-processing.md +140 -0
- encode_toolkit-0.3.0b8/skills/pipeline-hic/references/04-matrix-generation.md +145 -0
- encode_toolkit-0.3.0b8/skills/pipeline-hic/references/05-loop-calling.md +135 -0
- encode_toolkit-0.3.0b8/skills/pipeline-hic/references/literature.md +146 -0
- encode_toolkit-0.3.0b8/skills/pipeline-hic/scripts/Dockerfile +52 -0
- encode_toolkit-0.3.0b8/skills/pipeline-hic/scripts/main.nf +304 -0
- encode_toolkit-0.3.0b8/skills/pipeline-hic/scripts/nextflow.config +96 -0
- encode_toolkit-0.3.0b8/skills/pipeline-rnaseq/SKILL.md +449 -0
- encode_toolkit-0.3.0b8/skills/pipeline-rnaseq/references/01-qc-trimming.md +68 -0
- encode_toolkit-0.3.0b8/skills/pipeline-rnaseq/references/02-star-alignment.md +103 -0
- encode_toolkit-0.3.0b8/skills/pipeline-rnaseq/references/03-quantification.md +107 -0
- encode_toolkit-0.3.0b8/skills/pipeline-rnaseq/references/04-signal-tracks.md +92 -0
- encode_toolkit-0.3.0b8/skills/pipeline-rnaseq/references/05-qc-metrics.md +124 -0
- encode_toolkit-0.3.0b8/skills/pipeline-rnaseq/references/literature.md +152 -0
- encode_toolkit-0.3.0b8/skills/pipeline-rnaseq/scripts/Dockerfile +47 -0
- encode_toolkit-0.3.0b8/skills/pipeline-rnaseq/scripts/main.nf +287 -0
- encode_toolkit-0.3.0b8/skills/pipeline-rnaseq/scripts/nextflow.config +103 -0
- encode_toolkit-0.3.0b8/skills/pipeline-wgbs/SKILL.md +393 -0
- encode_toolkit-0.3.0b8/skills/pipeline-wgbs/references/01-qc-trimming.md +81 -0
- encode_toolkit-0.3.0b8/skills/pipeline-wgbs/references/02-bismark-alignment.md +113 -0
- encode_toolkit-0.3.0b8/skills/pipeline-wgbs/references/03-dedup-filtering.md +101 -0
- encode_toolkit-0.3.0b8/skills/pipeline-wgbs/references/04-methylation-calling.md +117 -0
- encode_toolkit-0.3.0b8/skills/pipeline-wgbs/references/05-qc-metrics.md +127 -0
- encode_toolkit-0.3.0b8/skills/pipeline-wgbs/references/literature.md +166 -0
- encode_toolkit-0.3.0b8/skills/pipeline-wgbs/scripts/Dockerfile +61 -0
- encode_toolkit-0.3.0b8/skills/pipeline-wgbs/scripts/main.nf +285 -0
- encode_toolkit-0.3.0b8/skills/pipeline-wgbs/scripts/nextflow.config +96 -0
- encode_toolkit-0.3.0b8/skills/publication-trust/SKILL.md +415 -0
- encode_toolkit-0.3.0b8/skills/publication-trust/references/literature.md +80 -0
- encode_toolkit-0.3.0b8/skills/quality-assessment/SKILL.md +555 -0
- encode_toolkit-0.3.0b8/skills/quality-assessment/references/literature.md +340 -0
- encode_toolkit-0.3.0b8/skills/regulatory-elements/SKILL.md +468 -0
- encode_toolkit-0.3.0b8/skills/regulatory-elements/references/literature.md +246 -0
- encode_toolkit-0.3.0b8/skills/scientific-writing/SKILL.md +920 -0
- encode_toolkit-0.3.0b8/skills/scientific-writing/references/literature.md +100 -0
- encode_toolkit-0.3.0b8/skills/scrna-meta-analysis/SKILL.md +555 -0
- encode_toolkit-0.3.0b8/skills/scrna-meta-analysis/references/literature.md +118 -0
- encode_toolkit-0.3.0b8/skills/search-encode/SKILL.md +481 -0
- encode_toolkit-0.3.0b8/skills/search-encode/references/literature.md +223 -0
- encode_toolkit-0.3.0b8/skills/setup/SKILL.md +313 -0
- encode_toolkit-0.3.0b8/skills/setup/references/literature.md +150 -0
- encode_toolkit-0.3.0b8/skills/single-cell-encode/SKILL.md +542 -0
- encode_toolkit-0.3.0b8/skills/single-cell-encode/references/literature.md +114 -0
- encode_toolkit-0.3.0b8/skills/track-experiments/SKILL.md +743 -0
- encode_toolkit-0.3.0b8/skills/track-experiments/references/literature.md +167 -0
- encode_toolkit-0.3.0b8/skills/ucsc-browser/SKILL.md +387 -0
- encode_toolkit-0.3.0b8/skills/ucsc-browser/references/literature.md +76 -0
- encode_toolkit-0.3.0b8/skills/variant-annotation/SKILL.md +541 -0
- encode_toolkit-0.3.0b8/skills/variant-annotation/references/literature.md +116 -0
- encode_toolkit-0.3.0b8/skills/visualization-workflow/SKILL.md +582 -0
- encode_toolkit-0.3.0b8/skills/visualization-workflow/references/literature.md +239 -0
- encode_toolkit-0.3.0b5/.claude-plugin/marketplace.json +0 -13
- encode_toolkit-0.3.0b5/.mcp.json +0 -8
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/.claude/settings.json +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/.env.example +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/.github/ISSUE_TEMPLATE/bug_report.yml +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/.github/ISSUE_TEMPLATE/feature_request.yml +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/.github/dependabot.yml +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/.github/workflows/lint.yml +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/.github/workflows/release.yml +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/.github/workflows/test.yml +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/.github/workflows/validate.yml +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/.pre-commit-config.yaml +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/CHANGELOG.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/CLAUDE.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/CONTRIBUTING.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/Dockerfile +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/LICENSE +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/PRIVACY.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/SECURITY.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/conftest.py +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/SHOWCASE.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/api-reference.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/icon.svg +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/integrations.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/security.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/accessibility-aggregation.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/batch-analysis.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/cellxgene-context.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/cite-encode.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/clinvar-annotation.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/compare-biosamples.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/cross-reference.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/data-provenance.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/disease-research.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/download-encode.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/ensembl-annotation.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/epigenome-profiling.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/geo-connector.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/gnomad-variants.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/gtex-expression.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/gwas-catalog.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/hic-aggregation.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/histone-aggregation.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/integrative-analysis.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/jaspar-motifs.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/methylation-aggregation.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/motif-analysis.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/multi-omics-integration.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/peak-annotation.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/pipeline-atacseq.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/pipeline-chipseq.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/pipeline-cutandrun.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/pipeline-dnaseseq.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/pipeline-guide.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/pipeline-hic.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/pipeline-rnaseq.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/pipeline-wgbs.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/publication-trust.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/quality-assessment.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/regulatory-elements.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/scrna-meta-analysis.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/search-encode.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/setup.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/single-cell-encode.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/track-experiments.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/ucsc-browser.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/variant-annotation.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/skill-vignettes/visualization-workflow.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/submission-examples.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/vignettes/01-discovery-and-search.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/vignettes/02-download-and-track.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/vignettes/03-epigenomics-workflow.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/vignettes/04-variant-and-disease.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/vignettes/05-expression-and-single-cell.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/vignettes/06-motif-and-regulatory.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/vignettes/07-3d-genome-and-methylation.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/vignettes/08-pipeline-execution.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/vignettes/09-cross-reference-and-integration.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/vignettes/_captured_output.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/docs/walkthrough.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/glama.json +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/index.js +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/accessibility-aggregation/SKILL.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/accessibility-aggregation/references/atac-vs-dnase.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/accessibility-aggregation/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/accessibility-aggregation/scripts/validate_peaks.py +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/batch-analysis/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/bioinformatics-installer/environments/atacseq-env.yml +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/bioinformatics-installer/environments/chipseq-env.yml +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/bioinformatics-installer/environments/cutandrun-env.yml +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/bioinformatics-installer/environments/dnaseseq-env.yml +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/bioinformatics-installer/environments/hic-env.yml +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/bioinformatics-installer/environments/rnaseq-env.yml +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/bioinformatics-installer/environments/wgbs-env.yml +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/bioinformatics-installer/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/bioinformatics-installer/scripts/install-nextflow.sh +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/bioinformatics-installer/scripts/install-python-packages.sh +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/bioinformatics-installer/scripts/install-r-packages.R +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/cellxgene-context/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/cite-encode/SKILL.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/cite-encode/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/clinvar-annotation/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/compare-biosamples/SKILL.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/compare-biosamples/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/cross-reference/SKILL.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/cross-reference/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/data-provenance/SKILL.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/data-provenance/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/disease-research/SKILL.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/disease-research/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/download-encode/SKILL.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/download-encode/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/ensembl-annotation/SKILL.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/ensembl-annotation/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/epigenome-profiling/SKILL.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/epigenome-profiling/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/functional-screen-analysis/SKILL.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/functional-screen-analysis/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/geo-connector/SKILL.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/geo-connector/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/gnomad-variants/SKILL.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/gnomad-variants/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/gtex-expression/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/gwas-catalog/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/hic-aggregation/SKILL.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/hic-aggregation/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/hic-aggregation/references/loop-caller-comparison.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/hic-aggregation/scripts/validate_loops.py +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/histone-aggregation/SKILL.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/histone-aggregation/references/broad-vs-narrow.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/histone-aggregation/references/histone-marks-reference.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/histone-aggregation/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/histone-aggregation/references/signal-filtering.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/histone-aggregation/scripts/validate_peaks.py +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/integrative-analysis/SKILL.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/integrative-analysis/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/jaspar-motifs/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/liftover-coordinates/SKILL.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/liftover-coordinates/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/methylation-aggregation/SKILL.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/methylation-aggregation/references/hmr-definitions.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/methylation-aggregation/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/methylation-aggregation/scripts/validate_methylation.py +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/motif-analysis/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/multi-omics-integration/SKILL.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/multi-omics-integration/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/peak-annotation/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-atacseq/references/01-qc-trimming.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-atacseq/references/02-alignment.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-atacseq/references/03-tn5-filtering.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-atacseq/references/04-peak-calling.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-atacseq/references/05-qc-metrics.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-atacseq/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-atacseq/scripts/Dockerfile +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-atacseq/scripts/main.nf +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-atacseq/scripts/nextflow.config +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-chipseq/references/01-qc-trimming.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-chipseq/references/02-alignment.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-chipseq/references/03-filtering.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-chipseq/references/04-analysis.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-chipseq/references/05-qc-metrics.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-chipseq/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-chipseq/scripts/Dockerfile +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-chipseq/scripts/main.nf +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-chipseq/scripts/nextflow.config +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-cutandrun/references/01-qc-trimming.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-cutandrun/references/02-bowtie2-alignment.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-cutandrun/references/03-filtering-spikein.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-cutandrun/references/04-seacr-peaks.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-cutandrun/references/05-qc-metrics.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-cutandrun/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-cutandrun/scripts/Dockerfile +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-cutandrun/scripts/main.nf +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-cutandrun/scripts/nextflow.config +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-dnaseseq/references/01-qc-trimming.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-dnaseseq/references/02-alignment.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-dnaseseq/references/03-filtering.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-dnaseseq/references/04-hotspot-calling.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-dnaseseq/references/05-footprinting.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-dnaseseq/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-dnaseseq/scripts/Dockerfile +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-dnaseseq/scripts/main.nf +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-dnaseseq/scripts/nextflow.config +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-guide/SKILL.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-guide/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-hic/references/01-qc-trimming.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-hic/references/02-alignment.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-hic/references/03-pair-processing.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-hic/references/04-matrix-generation.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-hic/references/05-loop-calling.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-hic/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-hic/scripts/Dockerfile +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-hic/scripts/main.nf +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-hic/scripts/nextflow.config +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-rnaseq/references/01-qc-trimming.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-rnaseq/references/02-star-alignment.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-rnaseq/references/03-quantification.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-rnaseq/references/04-signal-tracks.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-rnaseq/references/05-qc-metrics.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-rnaseq/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-rnaseq/scripts/Dockerfile +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-rnaseq/scripts/main.nf +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-rnaseq/scripts/nextflow.config +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-wgbs/references/01-qc-trimming.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-wgbs/references/02-bismark-alignment.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-wgbs/references/03-dedup-filtering.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-wgbs/references/04-methylation-calling.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-wgbs/references/05-qc-metrics.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-wgbs/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-wgbs/scripts/Dockerfile +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-wgbs/scripts/main.nf +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/pipeline-wgbs/scripts/nextflow.config +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/publication-trust/SKILL.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/publication-trust/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/quality-assessment/SKILL.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/quality-assessment/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/regulatory-elements/SKILL.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/regulatory-elements/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/scientific-writing/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/scrna-meta-analysis/SKILL.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/scrna-meta-analysis/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/search-encode/SKILL.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/search-encode/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/setup/SKILL.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/setup/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/single-cell-encode/SKILL.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/single-cell-encode/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/track-experiments/SKILL.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/track-experiments/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/ucsc-browser/SKILL.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/ucsc-browser/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/variant-annotation/SKILL.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/variant-annotation/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/visualization-workflow/references/literature.md +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/smithery.yaml +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/src/encode_connector/__init__.py +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/src/encode_connector/__main__.py +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/src/encode_connector/client/__init__.py +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/src/encode_connector/client/auth.py +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/src/encode_connector/client/constants.py +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/src/encode_connector/client/downloader.py +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/src/encode_connector/client/encode_client.py +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/src/encode_connector/client/models.py +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/src/encode_connector/client/tracker.py +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/src/encode_connector/client/validation.py +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/src/encode_connector/server/__init__.py +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/src/encode_connector/server/__main__.py +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/src/encode_connector/server/main.py +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/tests/__init__.py +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/tests/test_auth.py +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/tests/test_client.py +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/tests/test_downloader.py +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/tests/test_models.py +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/tests/test_server.py +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/tests/test_tool_responses.py +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/tests/test_tracker.py +0 -0
- {encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8}/tests/test_validation.py +0 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ammawla",
|
|
3
|
+
"owner": {
|
|
4
|
+
"name": "Dr. Alex M. Mawla, PhD"
|
|
5
|
+
},
|
|
6
|
+
"metadata": {
|
|
7
|
+
"description": "ENCODE Project genomics research infrastructure for Claude Code",
|
|
8
|
+
"homepage": "https://github.com/ammawla/encode-toolkit"
|
|
9
|
+
},
|
|
10
|
+
"plugins": [
|
|
11
|
+
{
|
|
12
|
+
"name": "encode-toolkit",
|
|
13
|
+
"version": "0.3.0-beta.8",
|
|
14
|
+
"source": "./plugin",
|
|
15
|
+
"description": "20 ENCODE API tools + 47 expert skills for genomics research. Search experiments, download files with MD5 verification, run pipelines, and cross-reference 14 databases."
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "encode-toolkit",
|
|
3
|
-
"description": "20 ENCODE API tools +
|
|
4
|
-
"version": "0.3.0-beta.
|
|
3
|
+
"description": "20 ENCODE API tools + 47 expert skills for genomics research. Search experiments, download files with MD5 verification, run pipelines, and cross-reference 14 databases.",
|
|
4
|
+
"version": "0.3.0-beta.8",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Dr. Alex M. Mawla, PhD",
|
|
7
7
|
"email": "ammawla@ucdavis.edu"
|
|
@@ -35,7 +35,12 @@
|
|
|
35
35
|
"biology",
|
|
36
36
|
"science"
|
|
37
37
|
],
|
|
38
|
-
"
|
|
38
|
+
"mcpServers": {
|
|
39
|
+
"encode-toolkit": {
|
|
40
|
+
"command": "npx",
|
|
41
|
+
"args": ["-y", "encode-toolkit@latest"]
|
|
42
|
+
}
|
|
43
|
+
},
|
|
39
44
|
"tools": [
|
|
40
45
|
{
|
|
41
46
|
"name": "encode_search_experiments",
|
|
@@ -51,6 +51,19 @@ data/
|
|
|
51
51
|
# MCP Registry tokens
|
|
52
52
|
.mcpregistry_*
|
|
53
53
|
|
|
54
|
+
# Generated PDFs
|
|
55
|
+
*.pdf
|
|
56
|
+
|
|
57
|
+
# PDF build artifacts
|
|
58
|
+
docs/pdf-build/
|
|
59
|
+
|
|
60
|
+
# Smithery
|
|
61
|
+
.smithery/
|
|
62
|
+
|
|
63
|
+
# npm lock (thin wrapper, no deps to lock)
|
|
64
|
+
package-lock.json
|
|
65
|
+
|
|
54
66
|
# OS
|
|
55
67
|
.DS_Store
|
|
56
68
|
Thumbs.db
|
|
69
|
+
buildwithclaude/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: encode-toolkit
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.0b8
|
|
4
4
|
Summary: MCP server for querying and downloading ENCODE Project genomics data directly from Claude
|
|
5
5
|
Project-URL: Homepage, https://github.com/ammawla/encode-toolkit
|
|
6
6
|
Project-URL: Repository, https://github.com/ammawla/encode-toolkit
|
|
@@ -37,7 +37,7 @@ Description-Content-Type: text/markdown
|
|
|
37
37
|
|
|
38
38
|
[](LICENSE)
|
|
39
39
|
[](https://www.python.org/downloads/)
|
|
40
|
-
[](CHANGELOG.md)
|
|
40
|
+
[](CHANGELOG.md)
|
|
41
41
|
[]()
|
|
42
42
|
[](docs/skill-vignettes/)
|
|
43
43
|
[](src/encode_connector/server/main.py)
|
|
@@ -65,16 +65,31 @@ Search ENCODE, cross-reference 14 databases, run 7 analysis pipelines, and gener
|
|
|
65
65
|
|
|
66
66
|
## Quick Start
|
|
67
67
|
|
|
68
|
-
### Claude Code (recommended)
|
|
68
|
+
### Claude Code Plugin (recommended)
|
|
69
|
+
|
|
70
|
+
Start a new Claude Code session and enter:
|
|
71
|
+
|
|
72
|
+
```
|
|
73
|
+
/plugin marketplace add ammawla/encode-toolkit
|
|
74
|
+
|
|
75
|
+
/plugin install encode-toolkit
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
That's it. All 20 tools, 47 skills, and the MCP connector are now available.
|
|
79
|
+
|
|
80
|
+
<details>
|
|
81
|
+
<summary><strong>MCP-only install (tools only, no skills)</strong></summary>
|
|
82
|
+
|
|
83
|
+
If you only need the 20 MCP tools without the 47 workflow skills:
|
|
69
84
|
|
|
70
85
|
```bash
|
|
71
86
|
claude mcp add encode -- uvx encode-toolkit
|
|
72
87
|
```
|
|
73
88
|
|
|
74
|
-
|
|
89
|
+
</details>
|
|
75
90
|
|
|
76
91
|
<details>
|
|
77
|
-
<summary><strong>Other
|
|
92
|
+
<summary><strong>Other editors and platforms</strong></summary>
|
|
78
93
|
|
|
79
94
|
#### npx (Node.js)
|
|
80
95
|
|
|
@@ -102,24 +117,10 @@ Then use `encode-toolkit` as the command in any MCP client configuration:
|
|
|
102
117
|
}
|
|
103
118
|
```
|
|
104
119
|
|
|
105
|
-
#### Claude Code — Plugin Install
|
|
106
|
-
|
|
107
|
-
For the full experience (20 tools + 47 skills), install as a Claude Code plugin:
|
|
108
|
-
|
|
109
|
-
```bash
|
|
110
|
-
claude plugin add /path/to/encode-toolkit
|
|
111
|
-
```
|
|
112
|
-
|
|
113
|
-
Or install from a marketplace:
|
|
114
|
-
|
|
115
|
-
```
|
|
116
|
-
/plugin install encode-toolkit
|
|
117
|
-
```
|
|
118
|
-
|
|
119
120
|
</details>
|
|
120
121
|
|
|
121
122
|
<details>
|
|
122
|
-
<summary><strong>Claude Desktop</strong></summary>
|
|
123
|
+
<summary><strong>Claude Desktop (MCP only)</strong></summary>
|
|
123
124
|
|
|
124
125
|
Add to your `claude_desktop_config.json`:
|
|
125
126
|
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
[](LICENSE)
|
|
6
6
|
[](https://www.python.org/downloads/)
|
|
7
|
-
[](CHANGELOG.md)
|
|
7
|
+
[](CHANGELOG.md)
|
|
8
8
|
[]()
|
|
9
9
|
[](docs/skill-vignettes/)
|
|
10
10
|
[](src/encode_connector/server/main.py)
|
|
@@ -32,16 +32,31 @@ Search ENCODE, cross-reference 14 databases, run 7 analysis pipelines, and gener
|
|
|
32
32
|
|
|
33
33
|
## Quick Start
|
|
34
34
|
|
|
35
|
-
### Claude Code (recommended)
|
|
35
|
+
### Claude Code Plugin (recommended)
|
|
36
|
+
|
|
37
|
+
Start a new Claude Code session and enter:
|
|
38
|
+
|
|
39
|
+
```
|
|
40
|
+
/plugin marketplace add ammawla/encode-toolkit
|
|
41
|
+
|
|
42
|
+
/plugin install encode-toolkit
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
That's it. All 20 tools, 47 skills, and the MCP connector are now available.
|
|
46
|
+
|
|
47
|
+
<details>
|
|
48
|
+
<summary><strong>MCP-only install (tools only, no skills)</strong></summary>
|
|
49
|
+
|
|
50
|
+
If you only need the 20 MCP tools without the 47 workflow skills:
|
|
36
51
|
|
|
37
52
|
```bash
|
|
38
53
|
claude mcp add encode -- uvx encode-toolkit
|
|
39
54
|
```
|
|
40
55
|
|
|
41
|
-
|
|
56
|
+
</details>
|
|
42
57
|
|
|
43
58
|
<details>
|
|
44
|
-
<summary><strong>Other
|
|
59
|
+
<summary><strong>Other editors and platforms</strong></summary>
|
|
45
60
|
|
|
46
61
|
#### npx (Node.js)
|
|
47
62
|
|
|
@@ -69,24 +84,10 @@ Then use `encode-toolkit` as the command in any MCP client configuration:
|
|
|
69
84
|
}
|
|
70
85
|
```
|
|
71
86
|
|
|
72
|
-
#### Claude Code — Plugin Install
|
|
73
|
-
|
|
74
|
-
For the full experience (20 tools + 47 skills), install as a Claude Code plugin:
|
|
75
|
-
|
|
76
|
-
```bash
|
|
77
|
-
claude plugin add /path/to/encode-toolkit
|
|
78
|
-
```
|
|
79
|
-
|
|
80
|
-
Or install from a marketplace:
|
|
81
|
-
|
|
82
|
-
```
|
|
83
|
-
/plugin install encode-toolkit
|
|
84
|
-
```
|
|
85
|
-
|
|
86
87
|
</details>
|
|
87
88
|
|
|
88
89
|
<details>
|
|
89
|
-
<summary><strong>Claude Desktop</strong></summary>
|
|
90
|
+
<summary><strong>Claude Desktop (MCP only)</strong></summary>
|
|
90
91
|
|
|
91
92
|
Add to your `claude_desktop_config.json`:
|
|
92
93
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "encode-toolkit",
|
|
3
|
-
"version": "0.3.0-beta.
|
|
3
|
+
"version": "0.3.0-beta.8",
|
|
4
4
|
"mcpName": "io.github.ammawla/encode-toolkit",
|
|
5
5
|
"description": "ENCODE Toolkit — Genomics research infrastructure with 20 MCP tools, 47 skills, 14 database integrations, and 7 pipelines for Claude Code",
|
|
6
6
|
"main": "index.js",
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "encode-toolkit",
|
|
3
|
+
"version": "0.3.0-beta.8",
|
|
4
|
+
"description": "20 ENCODE API tools + 47 expert skills for genomics research. Search experiments, download files with MD5 verification, run pipelines, and cross-reference 14 databases.",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Dr. Alex M. Mawla, PhD"
|
|
7
|
+
},
|
|
8
|
+
"repository": "https://github.com/ammawla/encode-toolkit",
|
|
9
|
+
"license": "CC-BY-NC-ND-4.0",
|
|
10
|
+
"keywords": [
|
|
11
|
+
"genomics",
|
|
12
|
+
"encode",
|
|
13
|
+
"bioinformatics",
|
|
14
|
+
"epigenomics",
|
|
15
|
+
"chip-seq",
|
|
16
|
+
"atac-seq",
|
|
17
|
+
"rna-seq",
|
|
18
|
+
"pipelines",
|
|
19
|
+
"science"
|
|
20
|
+
]
|
|
21
|
+
}
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
# ENCODE Toolkit
|
|
2
|
+
|
|
3
|
+
MCP server for the ENCODE Project (encodeproject.org) — the largest public catalog of functional genomic elements. Version 0.3.0-beta.
|
|
4
|
+
|
|
5
|
+
## Quick Start
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
python -m venv .venv && source .venv/bin/activate
|
|
9
|
+
pip install -e ".[dev]"
|
|
10
|
+
pytest # 506 tests, 98% coverage
|
|
11
|
+
ruff check src/ # lint
|
|
12
|
+
ruff format src/ # auto-format
|
|
13
|
+
encode-toolkit # run MCP server
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## Source Architecture
|
|
17
|
+
|
|
18
|
+
```
|
|
19
|
+
src/encode_connector/
|
|
20
|
+
server/main.py # MCP server — 20 tools, ~1500 lines (entry point)
|
|
21
|
+
client/encode_client.py # Async ENCODE API client, ~585 lines, 1-hour TTL cache
|
|
22
|
+
client/downloader.py # File download manager, ~305 lines, MD5 verification
|
|
23
|
+
client/auth.py # OS keyring + Fernet credential storage, ~262 lines
|
|
24
|
+
client/models.py # Pydantic models for API responses, ~332 lines
|
|
25
|
+
client/constants.py # API URLs, filter values, ~348 lines
|
|
26
|
+
client/tracker.py # SQLite experiment tracker, ~1129 lines
|
|
27
|
+
client/validation.py # Input validation, ~188 lines
|
|
28
|
+
skills/ # 47 skills, each with SKILL.md + references/ + scripts/
|
|
29
|
+
tests/ # 506 tests (pytest-asyncio, asyncio_mode=auto), 98% coverage
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Package Identity
|
|
33
|
+
|
|
34
|
+
- **PyPI / console command**: `encode-toolkit`
|
|
35
|
+
- **npm**: `encode-toolkit` (thin wrapper → uvx encode-toolkit)
|
|
36
|
+
- **Plugin marketplace**: `encode-toolkit`
|
|
37
|
+
- **Python module**: `encode_connector`
|
|
38
|
+
|
|
39
|
+
## Development Gotchas
|
|
40
|
+
|
|
41
|
+
- Use `.venv/bin/python` on macOS (`python` may not exist)
|
|
42
|
+
- `asyncio_mode = "auto"` in pytest — no need for `@pytest.mark.asyncio`
|
|
43
|
+
- `main.py` is ~53KB — don't send full contents to subagents (causes timeouts)
|
|
44
|
+
- MCP SDK: use `instructions=` parameter, not `description=`
|
|
45
|
+
- Integration tests hit live ENCODE API — deselect with `-m "not integration"`
|
|
46
|
+
- `server.json` is for MCP registry; `.claude-plugin/plugin.json` is for Claude marketplace — keep both in sync
|
|
47
|
+
- `conftest.py` sets up shared fixtures (tmp_path, mock tracker) — read before adding tests
|
|
48
|
+
- npm `package.json` + `index.js` are thin wrappers that call `uvx encode-toolkit` — no JS logic
|
|
49
|
+
|
|
50
|
+
## What This Server Does
|
|
51
|
+
|
|
52
|
+
Provides 20 tools to search, download, and track ENCODE data:
|
|
53
|
+
- **Search**: Find experiments by assay, organ, biosample, target, organism
|
|
54
|
+
- **Download**: Get BED, FASTQ, BAM, bigWig files with MD5 verification
|
|
55
|
+
- **Track**: Local experiment tracking with publications, citations, provenance
|
|
56
|
+
- **Cross-reference**: Link to PubMed, bioRxiv, ClinicalTrials, GEO
|
|
57
|
+
|
|
58
|
+
## Key Concepts
|
|
59
|
+
|
|
60
|
+
**Assay types**: Histone ChIP-seq, TF ChIP-seq, ATAC-seq, DNase-seq, RNA-seq, WGBS, Hi-C, scRNA-seq, scATAC-seq, CRISPR screen, STARR-seq, MPRA, eCLIP, CUT&RUN, CUT&Tag
|
|
61
|
+
|
|
62
|
+
**Biosample hierarchy**: tissue > primary cell > cell line > in vitro differentiated > organoid
|
|
63
|
+
|
|
64
|
+
**Tier 1 cell lines** (most data): K562, GM12878, H1-hESC
|
|
65
|
+
|
|
66
|
+
**File selection priority**: preferred_default=True > IDR thresholded peaks > fold change over control
|
|
67
|
+
|
|
68
|
+
**Assembly**: Use GRCh38 for human, mm10 for mouse. Never mix assemblies.
|
|
69
|
+
|
|
70
|
+
## Tool Selection Guide
|
|
71
|
+
|
|
72
|
+
| User wants to... | Use tool |
|
|
73
|
+
|---|---|
|
|
74
|
+
| Find experiments | `encode_search_experiments` |
|
|
75
|
+
| Explore what data exists (live counts) | `encode_get_facets` |
|
|
76
|
+
| Get valid filter strings (static list) | `encode_get_metadata` |
|
|
77
|
+
| Get experiment details | `encode_get_experiment` |
|
|
78
|
+
| Find specific file types | `encode_search_files` |
|
|
79
|
+
| List files for experiment | `encode_list_files` |
|
|
80
|
+
| Get file details | `encode_get_file_info` |
|
|
81
|
+
| Download specific files by accession | `encode_download_files` |
|
|
82
|
+
| Search + download in one step | `encode_batch_download` |
|
|
83
|
+
| Track experiments locally | `encode_track_experiment` |
|
|
84
|
+
| Compare experiments | `encode_compare_experiments` |
|
|
85
|
+
| Get citations | `encode_get_citations` |
|
|
86
|
+
| Log derived files | `encode_log_derived_file` |
|
|
87
|
+
| Link to PubMed/GEO | `encode_link_reference` |
|
|
88
|
+
| List tracked experiments | `encode_list_tracked` |
|
|
89
|
+
| Export tracking data | `encode_export_data` |
|
|
90
|
+
| View file provenance | `encode_get_provenance` |
|
|
91
|
+
| View linked references | `encode_get_references` |
|
|
92
|
+
| Get collection summary | `encode_summarize_collection` |
|
|
93
|
+
| Manage API credentials | `encode_manage_credentials` |
|
|
94
|
+
|
|
95
|
+
### Example Queries
|
|
96
|
+
|
|
97
|
+
**Search**: `encode_search_experiments(assay_title="Histone ChIP-seq", organ="pancreas", target="H3K27ac")` → finds all H3K27ac ChIP-seq in pancreas tissue
|
|
98
|
+
|
|
99
|
+
**Download**: `encode_download_files(file_accessions=["ENCFF123ABC"], download_dir="/data/encode")` → downloads with MD5 verification
|
|
100
|
+
|
|
101
|
+
**Track**: `encode_track_experiment(accession="ENCSR000ABC", notes="Liver H3K4me3 for enhancer analysis")` → saves to local SQLite with publications
|
|
102
|
+
|
|
103
|
+
**Explore**: `encode_get_facets(assay_title="Histone ChIP-seq", organ="pancreas")` → shows available targets, labs, biosample types
|
|
104
|
+
|
|
105
|
+
**Batch download**: `encode_batch_download(assay_title="ATAC-seq", organ="liver", file_format="bed", output_type="IDR thresholded peaks", dry_run=True)` → previews matching files before download
|
|
106
|
+
|
|
107
|
+
**Compare**: `encode_compare_experiments(accession1="ENCSR123ABC", accession2="ENCSR456DEF")` → checks compatibility for combined analysis
|
|
108
|
+
|
|
109
|
+
## 47 Skills Available
|
|
110
|
+
|
|
111
|
+
**Core**: setup, search-encode, download-encode, track-experiments, cross-reference
|
|
112
|
+
|
|
113
|
+
**Analysis**: quality-assessment, integrative-analysis, regulatory-elements, epigenome-profiling, compare-biosamples, visualization-workflow, motif-analysis, peak-annotation, batch-analysis
|
|
114
|
+
|
|
115
|
+
**Functional Genomics**: functional-screen-analysis
|
|
116
|
+
|
|
117
|
+
**Data Aggregation**: histone-aggregation, accessibility-aggregation, hic-aggregation, methylation-aggregation
|
|
118
|
+
|
|
119
|
+
**External Databases**: gtex-expression, clinvar-annotation, cellxgene-context, gwas-catalog, jaspar-motifs, ensembl-annotation, geo-connector, gnomad-variants, ucsc-browser
|
|
120
|
+
|
|
121
|
+
**Workflows**: data-provenance, cite-encode, variant-annotation, pipeline-guide, single-cell-encode, disease-research, publication-trust, bioinformatics-installer, scientific-writing, liftover-coordinates
|
|
122
|
+
|
|
123
|
+
**Pipeline Execution**: pipeline-chipseq, pipeline-atacseq, pipeline-rnaseq, pipeline-wgbs, pipeline-hic, pipeline-dnaseseq, pipeline-cutandrun
|
|
124
|
+
|
|
125
|
+
**Meta-Analysis**: scrna-meta-analysis, multi-omics-integration
|
|
126
|
+
|
|
127
|
+
## Reference Files
|
|
128
|
+
|
|
129
|
+
- `skills/histone-aggregation/references/histone-marks-reference.md` — Comprehensive chromatin biology catalog (1,442 lines, 74 references, 12 sections: histone marks, ChromHMM states, functional categories, contradictions, TF combinations, chromatin remodeling, DNA methylation interplay, nucleosome dynamics, 3D genome organization, chromatin in disease)
|
|
130
|
+
- `skills/*/references/literature.md` — 34 literature reference documents (33 per-skill + 1 chromatin biology catalog, ~320 papers with DOI, PMID, citation counts, key findings)
|
|
131
|
+
|
|
132
|
+
## Quality Awareness
|
|
133
|
+
|
|
134
|
+
- ENCODE audits: ERROR > NOT_COMPLIANT > WARNING > INTERNAL_ACTION
|
|
135
|
+
- ChIP-seq metrics: FRiP ≥1%, NSC >1.05, RSC >0.8, NRF ≥0.8 (Landt et al. 2012)
|
|
136
|
+
- ATAC-seq metrics: TSS enrichment ≥6, fragment size nucleosomal ladder (Buenrostro et al. 2013)
|
|
137
|
+
- RNA-seq: Mapping rate >80%, rRNA <10%, replicate correlation ≥0.9 (Conesa et al. 2016)
|
|
138
|
+
- WGBS: Bisulfite conversion >99%, CpG coverage ≥10× for DMRs (Foox et al. 2021)
|
|
139
|
+
- Hi-C: Cis/trans ratio >60%, long-range cis >40% (Yardimci et al. 2019)
|
|
140
|
+
- CUT&RUN/CUT&Tag: Different QC profiles from ChIP-seq; use suspect list (Nordin et al. 2023)
|
|
141
|
+
- Always use 2+ biological replicates
|
|
142
|
+
- Always apply ENCODE Blacklist v2 (Amemiya et al. 2019)
|
|
143
|
+
- No single metric is sufficient — interpret collectively
|
|
144
|
+
|
|
145
|
+
## Provenance Standard
|
|
146
|
+
|
|
147
|
+
Every operation should log: tool name + version, exact command, input accessions + MD5, reference files + source + MD5, output descriptions + counts, and statistics. Scripts stored with sequential numbering. Enables auto-generation of publication-ready methods sections.
|
|
148
|
+
|
|
149
|
+
## Cross-Database Integration
|
|
150
|
+
|
|
151
|
+
This plugin works with MCP servers:
|
|
152
|
+
- **PubMed** (search_articles) — Literature search and citation
|
|
153
|
+
- **bioRxiv** (search_preprints) — Preprint discovery
|
|
154
|
+
- **ClinicalTrials.gov** (search_trials) — Clinical trial cross-reference
|
|
155
|
+
- **Open Targets** (query_open_targets_graphql) — Drug target identification
|
|
156
|
+
- **Consensus** (search) — Academic paper search across 200M+ papers
|
|
157
|
+
|
|
158
|
+
And via skills (REST API/CLI):
|
|
159
|
+
- **UCSC Genome Browser** — cCRE tracks, TF binding, sequence retrieval via REST API
|
|
160
|
+
- **NCBI GEO** — Complementary expression/epigenomic datasets via E-utilities
|
|
161
|
+
- **gnomAD** — Population allele frequencies and gene constraint via GraphQL
|
|
162
|
+
- **Ensembl** — VEP variant annotation, Regulatory Build, coordinate liftover via REST API
|
|
163
|
+
- **NCBI SRA** — Raw sequencing reads linked from GEO (via E-utilities elink)
|
|
164
|
+
- **GTEx** — Tissue-specific gene expression for ENCODE regulatory element interpretation via REST API
|
|
165
|
+
- **ClinVar** — Clinical variant significance for ENCODE-identified regulatory variants via E-utilities
|
|
166
|
+
- **CELLxGENE** — Single-cell expression context for ENCODE bulk data via REST API
|
|
167
|
+
- **GWAS Catalog** — GWAS associations in ENCODE regulatory regions via REST API
|
|
168
|
+
- **JASPAR** — Transcription factor binding motifs for ENCODE ChIP-seq peak analysis via REST API
|
|
@@ -1,12 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: batch-analysis
|
|
3
|
-
description:
|
|
4
|
-
Guide for multi-experiment batch operations: QC screening, batch download, comparison,
|
|
5
|
-
and report generation across many ENCODE experiments simultaneously. Use when users
|
|
6
|
-
need to process 5+ experiments together, create experiment comparison tables, perform
|
|
7
|
-
batch quality checks, or generate summary reports. Trigger on: batch analysis, multiple
|
|
8
|
-
experiments, bulk processing, experiment comparison, batch QC, multi-sample, batch
|
|
9
|
-
download, experiment table, summary report, collection analysis.
|
|
3
|
+
description: "Guide for multi-experiment batch operations: QC screening, batch download, comparison, and report generation across many ENCODE experiments simultaneously. Use when users need to process 5+ experiments together, create experiment comparison tables, perform batch quality checks, or generate summary reports. Trigger on: batch analysis, multiple experiments, bulk processing, experiment comparison, batch QC, multi-sample, batch download, experiment table, summary report, collection analysis."
|
|
10
4
|
---
|
|
11
5
|
|
|
12
6
|
# Batch Analysis of ENCODE Experiments
|
{encode_toolkit-0.3.0b5 → encode_toolkit-0.3.0b8/plugin}/skills/bioinformatics-installer/SKILL.md
RENAMED
|
@@ -1,15 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: bioinformatics-installer
|
|
3
|
-
description:
|
|
4
|
-
Install bioinformatics tools for ENCODE data analysis. Covers CLI tools
|
|
5
|
-
(BWA, STAR, samtools, MACS2), R/Bioconductor packages (DESeq2, Seurat,
|
|
6
|
-
ChIPseeker), Python packages (Scanpy, deeptools), and Nextflow pipeline
|
|
7
|
-
infrastructure. Generates conda environments, R install scripts, and Python
|
|
8
|
-
requirements. Use when the user needs to set up a bioinformatics workstation,
|
|
9
|
-
install tools for a specific assay, create reproducible environments, or
|
|
10
|
-
troubleshoot dependency issues. Trigger on: install tools, set up environment,
|
|
11
|
-
conda create, bioinformatics setup, install R packages, install Bioconductor,
|
|
12
|
-
install pipeline tools.
|
|
3
|
+
description: "Install bioinformatics tools for ENCODE data analysis. Covers CLI tools (BWA, STAR, samtools, MACS2), R/Bioconductor packages (DESeq2, Seurat, ChIPseeker), Python packages (Scanpy, deeptools), and Nextflow pipeline infrastructure. Generates conda environments, R install scripts, and Python requirements. Use when the user needs to set up a bioinformatics workstation, install tools for a specific assay, create reproducible environments, or troubleshoot dependency issues. Trigger on: install tools, set up environment, conda create, bioinformatics setup, install R packages, install Bioconductor, install pipeline tools."
|
|
13
4
|
---
|
|
14
5
|
|
|
15
6
|
# Bioinformatics Installer for ENCODE Data Analysis
|
|
@@ -1,11 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: cellxgene-context
|
|
3
|
-
description:
|
|
4
|
-
Guide for integrating CellxGene Census single-cell data with ENCODE bulk experiments.
|
|
5
|
-
Use when users need cell-type-specific expression context for ENCODE regulatory data,
|
|
6
|
-
want to deconvolve bulk ENCODE signals, or validate regulatory elements at single-cell
|
|
7
|
-
resolution. Trigger on: CellxGene, single-cell atlas, cell type expression, Census,
|
|
8
|
-
cell type specificity, single-cell context, scRNA-seq atlas.
|
|
3
|
+
description: "Guide for integrating CellxGene Census single-cell data with ENCODE bulk experiments. Use when users need cell-type-specific expression context for ENCODE regulatory data, want to deconvolve bulk ENCODE signals, or validate regulatory elements at single-cell resolution. Trigger on: CellxGene, single-cell atlas, cell type expression, Census, cell type specificity, single-cell context, scRNA-seq atlas."
|
|
9
4
|
---
|
|
10
5
|
|
|
11
6
|
# Integrating CellxGene Census Single-Cell Data with ENCODE Bulk Experiments
|
|
@@ -1,11 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: clinvar-annotation
|
|
3
|
-
description:
|
|
4
|
-
Guide for annotating ENCODE regulatory variants with ClinVar clinical significance.
|
|
5
|
-
Use when users need to check if variants in ENCODE peaks have clinical associations,
|
|
6
|
-
find pathogenic variants in regulatory regions, or assess variant clinical impact.
|
|
7
|
-
Trigger on: ClinVar, clinical significance, pathogenic variant, variant classification,
|
|
8
|
-
clinical variant, disease variant, VUS, benign, likely pathogenic.
|
|
3
|
+
description: "Guide for annotating ENCODE regulatory variants with ClinVar clinical significance. Use when users need to check if variants in ENCODE peaks have clinical associations, find pathogenic variants in regulatory regions, or assess variant clinical impact. Trigger on: ClinVar, clinical significance, pathogenic variant, variant classification, clinical variant, disease variant, VUS, benign, likely pathogenic."
|
|
9
4
|
---
|
|
10
5
|
|
|
11
6
|
## When to Use
|
|
@@ -1,11 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: gtex-expression
|
|
3
|
-
description:
|
|
4
|
-
Guide for integrating GTEx tissue expression data with ENCODE regulatory elements.
|
|
5
|
-
Use when users need to check if a gene is expressed in a tissue, correlate
|
|
6
|
-
regulatory elements with expression, or validate ENCODE findings against GTEx.
|
|
7
|
-
Trigger on: GTEx, tissue expression, gene expression levels, expression atlas,
|
|
8
|
-
eQTL, tissue-specific expression, TPM values.
|
|
3
|
+
description: "Guide for integrating GTEx tissue expression data with ENCODE regulatory elements. Use when users need to check if a gene is expressed in a tissue, correlate regulatory elements with expression, or validate ENCODE findings against GTEx. Trigger on: GTEx, tissue expression, gene expression levels, expression atlas, eQTL, tissue-specific expression, TPM values."
|
|
9
4
|
---
|
|
10
5
|
|
|
11
6
|
# Integrating GTEx Tissue Expression with ENCODE Regulatory Data
|
|
@@ -1,11 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: gwas-catalog
|
|
3
|
-
description:
|
|
4
|
-
Guide for integrating NHGRI-EBI GWAS Catalog associations with ENCODE regulatory data.
|
|
5
|
-
Use when users need to find GWAS variants in ENCODE peaks, connect regulatory elements
|
|
6
|
-
to disease associations, or prioritize functional variants using ENCODE annotations.
|
|
7
|
-
Trigger on: GWAS, genome-wide association, SNP association, trait association,
|
|
8
|
-
GWAS Catalog, disease association, risk variant, lead SNP, LD proxy.
|
|
3
|
+
description: "Guide for integrating NHGRI-EBI GWAS Catalog associations with ENCODE regulatory data. Use when users need to find GWAS variants in ENCODE peaks, connect regulatory elements to disease associations, or prioritize functional variants using ENCODE annotations. Trigger on: GWAS, genome-wide association, SNP association, trait association, GWAS Catalog, disease association, risk variant, lead SNP, LD proxy."
|
|
9
4
|
---
|
|
10
5
|
|
|
11
6
|
# Integrating NHGRI-EBI GWAS Catalog with ENCODE Regulatory Data
|
|
@@ -1,11 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: jaspar-motifs
|
|
3
|
-
description:
|
|
4
|
-
Guide for using JASPAR transcription factor binding profiles with ENCODE ChIP-seq data.
|
|
5
|
-
Use when users need to find TF binding motifs in ENCODE peaks, validate ChIP-seq
|
|
6
|
-
targets with known motifs, or scan regulatory regions for TF binding potential.
|
|
7
|
-
Trigger on: JASPAR, motif database, binding profile, PWM, position weight matrix,
|
|
8
|
-
TF motif, motif enrichment, motif scanning, binding site prediction.
|
|
3
|
+
description: "Guide for using JASPAR transcription factor binding profiles with ENCODE ChIP-seq data. Use when users need to find TF binding motifs in ENCODE peaks, validate ChIP-seq targets with known motifs, or scan regulatory regions for TF binding potential. Trigger on: JASPAR, motif database, binding profile, PWM, position weight matrix, TF motif, motif enrichment, motif scanning, binding site prediction."
|
|
9
4
|
---
|
|
10
5
|
|
|
11
6
|
# Using JASPAR Transcription Factor Binding Profiles with ENCODE ChIP-seq Data
|
|
@@ -1,11 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: motif-analysis
|
|
3
|
-
description:
|
|
4
|
-
Guide for de novo and known motif enrichment analysis of ENCODE ChIP-seq and ATAC-seq
|
|
5
|
-
peaks using HOMER and MEME Suite. Use when users need to discover TF binding motifs
|
|
6
|
-
in peaks, validate ChIP-seq targets, or find co-binding partners. Trigger on: motif
|
|
7
|
-
analysis, HOMER, MEME, de novo motif, motif enrichment, findMotifsGenome, AME,
|
|
8
|
-
MEME-ChIP, known motif, TF binding motif, co-factor, motif discovery.
|
|
3
|
+
description: "Guide for de novo and known motif enrichment analysis of ENCODE ChIP-seq and ATAC-seq peaks using HOMER and MEME Suite. Use when users need to discover TF binding motifs in peaks, validate ChIP-seq targets, or find co-binding partners. Trigger on: motif analysis, HOMER, MEME, de novo motif, motif enrichment, findMotifsGenome, AME, MEME-ChIP, known motif, TF binding motif, co-factor, motif discovery."
|
|
9
4
|
---
|
|
10
5
|
|
|
11
6
|
# Motif Analysis of ENCODE Peak Data
|
|
@@ -1,11 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: peak-annotation
|
|
3
|
-
description:
|
|
4
|
-
Guide for annotating ENCODE peaks with genomic features using ChIPseeker and GREAT.
|
|
5
|
-
Use when users need to assign peaks to genes, determine genomic feature distribution
|
|
6
|
-
(promoter, intron, intergenic), or perform gene ontology enrichment of peak-associated
|
|
7
|
-
genes. Trigger on: peak annotation, ChIPseeker, GREAT, peak to gene, genomic feature,
|
|
8
|
-
promoter enrichment, gene ontology, peak distribution, TSS distance, nearest gene.
|
|
3
|
+
description: "Guide for annotating ENCODE peaks with genomic features using ChIPseeker and GREAT. Use when users need to assign peaks to genes, determine genomic feature distribution (promoter, intron, intergenic), or perform gene ontology enrichment of peak-associated genes. Trigger on: peak annotation, ChIPseeker, GREAT, peak to gene, genomic feature, promoter enrichment, gene ontology, peak distribution, TSS distance, nearest gene."
|
|
9
4
|
---
|
|
10
5
|
|
|
11
6
|
# Peak Annotation of ENCODE Data
|
|
@@ -1,13 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: pipeline-atacseq
|
|
3
|
-
description:
|
|
4
|
-
Execute ENCODE ATAC-seq processing pipeline from FASTQ to peaks and signal tracks.
|
|
5
|
-
Child of pipeline-guide. Provides stage-by-stage Nextflow execution with Docker
|
|
6
|
-
containers and cloud deployment. Handles Tn5 transposase offset correction,
|
|
7
|
-
mitochondrial read removal, nucleosome-free fragment selection, and TSS enrichment
|
|
8
|
-
scoring. Use when users need to process ATAC-seq data following ENCODE standards.
|
|
9
|
-
Trigger on: ATAC-seq pipeline, run ATAC-seq, process ATAC-seq, chromatin
|
|
10
|
-
accessibility, open chromatin, Tn5 shift, TSS enrichment.
|
|
3
|
+
description: "Execute ENCODE ATAC-seq processing pipeline from FASTQ to peaks and signal tracks. Child of pipeline-guide. Provides stage-by-stage Nextflow execution with Docker containers and cloud deployment. Handles Tn5 transposase offset correction, mitochondrial read removal, nucleosome-free fragment selection, and TSS enrichment scoring. Use when users need to process ATAC-seq data following ENCODE standards. Trigger on: ATAC-seq pipeline, run ATAC-seq, process ATAC-seq, chromatin accessibility, open chromatin, Tn5 shift, TSS enrichment."
|
|
11
4
|
---
|
|
12
5
|
|
|
13
6
|
# ENCODE ATAC-seq Pipeline
|
|
@@ -1,12 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: pipeline-chipseq
|
|
3
|
-
description:
|
|
4
|
-
Execute ENCODE ChIP-seq processing pipeline from FASTQ to peaks and signal tracks.
|
|
5
|
-
Child of pipeline-guide. Provides stage-by-stage Nextflow execution with Docker
|
|
6
|
-
containers and cloud deployment. Use when users need to process ChIP-seq data
|
|
7
|
-
following ENCODE standards, run peak calling with MACS2, perform IDR analysis,
|
|
8
|
-
or generate signal tracks. Trigger on: ChIP-seq pipeline, run ChIP-seq, process
|
|
9
|
-
ChIP-seq, MACS2 peak calling, IDR analysis, ChIP-seq FASTQ processing.
|
|
3
|
+
description: "Execute ENCODE ChIP-seq processing pipeline from FASTQ to peaks and signal tracks. Child of pipeline-guide. Provides stage-by-stage Nextflow execution with Docker containers and cloud deployment. Use when users need to process ChIP-seq data following ENCODE standards, run peak calling with MACS2, perform IDR analysis, or generate signal tracks. Trigger on: ChIP-seq pipeline, run ChIP-seq, process ChIP-seq, MACS2 peak calling, IDR analysis, ChIP-seq FASTQ processing."
|
|
10
4
|
---
|
|
11
5
|
|
|
12
6
|
# ENCODE ChIP-seq Pipeline
|
|
@@ -1,11 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: pipeline-cutandrun
|
|
3
|
-
description:
|
|
4
|
-
Execute CUT&RUN processing pipeline from FASTQ to peaks and signal tracks.
|
|
5
|
-
Child of pipeline-guide. Provides Nextflow execution with Docker and cloud
|
|
6
|
-
deployment. Use when processing CUT&RUN or CUT&Tag data, an alternative to
|
|
7
|
-
ChIP-seq with lower background. Trigger on: CUT&RUN pipeline, CUT&Tag,
|
|
8
|
-
SEACR, Henikoff, targeted chromatin, pA-MNase, process CUT&RUN.
|
|
3
|
+
description: "Execute CUT&RUN processing pipeline from FASTQ to peaks and signal tracks. Child of pipeline-guide. Provides Nextflow execution with Docker and cloud deployment. Use when processing CUT&RUN or CUT&Tag data, an alternative to ChIP-seq with lower background. Trigger on: CUT&RUN pipeline, CUT&Tag, SEACR, Henikoff, targeted chromatin, pA-MNase, process CUT&RUN."
|
|
9
4
|
---
|
|
10
5
|
|
|
11
6
|
# ENCODE CUT&RUN Pipeline: FASTQ to Peaks and Signal Tracks
|
|
@@ -1,12 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: pipeline-dnaseseq
|
|
3
|
-
description:
|
|
4
|
-
Execute ENCODE DNase-seq pipeline from FASTQ to hotspots and footprints.
|
|
5
|
-
Child of pipeline-guide. Provides Nextflow execution with Docker and cloud
|
|
6
|
-
deployment. Use when processing DNase-seq data, calling DNase hypersensitive
|
|
7
|
-
sites, performing footprinting analysis. Trigger on: DNase-seq pipeline,
|
|
8
|
-
DNase hypersensitive, DHS, Hotspot2, footprinting, DNase I, chromatin
|
|
9
|
-
accessibility DNase.
|
|
3
|
+
description: "Execute ENCODE DNase-seq pipeline from FASTQ to hotspots and footprints. Child of pipeline-guide. Provides Nextflow execution with Docker and cloud deployment. Use when processing DNase-seq data, calling DNase hypersensitive sites, performing footprinting analysis. Trigger on: DNase-seq pipeline, DNase hypersensitive, DHS, Hotspot2, footprinting, DNase I, chromatin accessibility DNase."
|
|
10
4
|
---
|
|
11
5
|
|
|
12
6
|
# ENCODE DNase-seq Pipeline: FASTQ to Hotspots and Footprints
|
|
@@ -1,11 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: pipeline-hic
|
|
3
|
-
description:
|
|
4
|
-
Execute ENCODE Hi-C pipeline from FASTQ to contact matrices and loop calls.
|
|
5
|
-
Child of pipeline-guide. Provides Nextflow execution with Docker and cloud
|
|
6
|
-
deployment. Use when processing Hi-C data, generating contact matrices,
|
|
7
|
-
calling loops or TADs. Trigger on: Hi-C pipeline, chromatin conformation,
|
|
8
|
-
contact matrix, loop calling, TAD detection, Juicer, HiCCUPS, 3D genome.
|
|
3
|
+
description: "Execute ENCODE Hi-C pipeline from FASTQ to contact matrices and loop calls. Child of pipeline-guide. Provides Nextflow execution with Docker and cloud deployment. Use when processing Hi-C data, generating contact matrices, calling loops or TADs. Trigger on: Hi-C pipeline, chromatin conformation, contact matrix, loop calling, TAD detection, Juicer, HiCCUPS, 3D genome."
|
|
9
4
|
---
|
|
10
5
|
|
|
11
6
|
# ENCODE Hi-C Pipeline: FASTQ to Contact Matrices and Loops
|