python-environment-management

python-environment-management is a skill for Claude Code, Codex from HolobiomicsLab/asb-skill-collections. It costs 51 tokens per session (2,095 once invoked), scanned A, original, Apache-2.0.

A setup guide for isolated Python environments used by Hi-C, a method for studying how DNA is arranged in cells. It pins and checks the required library versions so the same processing can run consistently on different machines.

In plain words
What is it for?
It helps prepare Python for Hi-C data normalization and read-alignment filtering, and records the environment details for later runs.
Why use it?
It prevents jobs from failing because libraries are missing, incompatible, or different between runs and compute nodes.

Skill for Claude CodeCodex

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

Good fit It helps prepare Python for Hi-C data normalization and read-alignment filtering, and records the environment details for later runs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/holobiomicslab/asb-skill-collections/python-environment-management
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 HolobiomicsLab/asb-skill-collections --skill python-environment-management
Clone the repo
git clone --depth 1 https://github.com/HolobiomicsLab/asb-skill-collections

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 python-environment-management

README.md
[![agentmods](https://agentmods.dev/badge/skills/holobiomicslab/asb-skill-collections/python-environment-management/github.svg)](https://agentmods.dev/skills/holobiomicslab/asb-skill-collections/python-environment-management)
Your own site
<a href="https://agentmods.dev/skills/holobiomicslab/asb-skill-collections/python-environment-management"><img src="https://agentmods.dev/badge/skills/holobiomicslab/asb-skill-collections/python-environment-management/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 python-environment-management

Your own site · 80×15
<a href="https://agentmods.dev/skills/holobiomicslab/asb-skill-collections/python-environment-management"><img src="https://agentmods.dev/badge/skills/holobiomicslab/asb-skill-collections/python-environment-management.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,095 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00051 $0.02095
Opus 5 $0.00026 $0.01047
Sonnet 5 $0.00010 $0.00419
Haiku 4.5 $0.00005 $0.00210

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

Security

Grade A, and why

python-environment-management 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 3d 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.

collections/epigenomics/v1/skills/python-environment-management/SKILL.md · 114 lines

How it starts

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

python-environment-management

Summary

Establish and validate isolated Python environments with pinned dependency versions (numpy ≥1.18.1, scipy ≥1.4.1, pysam ≥0.15.4, bx-python ≥0.8.8) required for Hi-C data processing pipelines. This skill ensures reproducible execution of Python-dependent bioinformatics workflows by verifying interpreter version (>3.7), resolving transitive dependencies, and documenting environment configuration for downstream pipeline steps.

When to use

You are preparing to run Hi-C data normalization or read alignment filtering steps that depend on Python modules (iced, pysam, numpy, scipy) and you need to ensure consistent module versions across multiple runs or compute nodes. Use this skill at the start of any HiC-Pro pipeline execution or when setting up a new computational environment for Hi-C analysis.

When NOT to use

  • If Hi-C data has already been normalized using a pre-configured HiC-Pro Docker/Singularity container or conda environment — environment setup is already handled.
  • If you are only performing SAM/BAM read alignment filtering without downstream normalization — pysam alone may not require the full iced+numpy+scipy stack.
  • If Python 2.x is the only available interpreter and cannot be upgraded — the pipeline requires Python >3.7.

Inputs

  • Target system shell environment (bash/sh)
  • Python interpreter (>3.7) executable path
  • Optional: existing config-install.txt or environment configuration file

Outputs

  • Validated Python environment with iced module installed
  • Configuration file with PYTHONPATH and dependency paths documented
  • Version verification report (Python version, iced version, numpy/scipy versions)

How to apply

First, verify that Python >3.7 is available on the target system by checking the interpreter version. Then, install the iced module independently from https://github.com/hiclib/iced along with its required transitive dependencies (numpy ≥1.18.1, scipy ≥1.4.1) using pip or the module's setup.py. Validate installation by importing each module in a Python interpreter and checking version and API availability. Document the iced installation path and set PYTHONPATH environment variables to point to the installation directory in a configuration file that will be sourced before running HiC-Pro normalization steps. This ensures the ICE normalization algorithm can correctly locate and use the iced module during Hi-C contact matrix correction.

Read the full file on GitHub · 114 lines

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. 3d ago First seen · 114 lines · 51 tokens per session scan A 6c6c11feaf03

Subscribe to this mod's changes

python-environment-management is a skill published in the GitHub repository HolobiomicsLab/asb-skill-collections (15 stars, last pushed 4d ago), licensed Apache-2.0. It adds 51 tokens to every session and 2,095 once invoked, about $0.0003 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-09-06.

Related

Other skills, from other repositories

pytdc

Use Therapeutics Data Commons through the PyTDC Python package for registry discovery, approved dataset access, task-aware splits (scaffold, cold-start, temporal, combination), evaluator metrics, benchmark groups, and bounded molecular-oracle workflows. Use this skill to find which TDC datasets exist for a therapeutic…

K-Dense-AI/drug-discovery-agent-skills · 150 tokens

datamol

Pythonic wrapper around RDKit with a simplified interface and sensible defaults. Preferred for standard drug discovery work — SMILES/SELFIES/InChI conversion, molecule standardization and sanitization, descriptors, ECFP and other fingerprints, Tanimoto distance matrices, Butina clustering and diverse subset picking…

K-Dense-AI/drug-discovery-agent-skills · 178 tokens

biopython-sequence-analysis

Biopython sequence analysis: parse FASTA/FASTQ/GenBank/GFF (SeqIO), NCBI Entrez (esearch/efetch/elink), remote/local BLAST, pairwise/MSA alignment (PairwiseAligner, MUSCLE/ClustalW), phylogenetic trees (Phylo). Use for gene family studies, phylogenomics, comparative genomics, NCBI pipelines. For…

jaechang-hits/SciAgent-Skills · 118 tokens

pyimagej-fiji-bridge

Python bridge to ImageJ2/Fiji for macros, plugins (Bio-Formats, TrackMate, Analyze Particles), NumPy↔ImagePlus/ImgLib2 exchange, and ImageJ Ops. Automates Fiji headlessly from Python. Use scikit-image for pure Python without Fiji plugins; napari for visualization.

jaechang-hits/SciAgent-Skills · 73 tokens

trackpy-particle-tracking

Python library for single-particle tracking (SPT) in video microscopy via the Crocker-Grier algorithm. Locate particles (fluorescent spots, colloids, vesicles, cells) per frame, link into trajectories, filter short tracks, and compute MSD for diffusion analysis. 2D/3D with subpixel accuracy; reads TIF stacks, AVI…

jaechang-hits/SciAgent-Skills · 103 tokens

anndata-data-structure

Annotated matrices for single-cell genomics. Stores X with obs/var metadata, layers, embeddings (obsm/varm), graphs (obsp/varp), uns. Use for .h5ad/.zarr I/O, concatenation, scverse integration. For analysis use scanpy; for probabilistic models use scvi-tools.

jaechang-hits/SciAgent-Skills · 76 tokens