Agent skill
2-bam-filtration
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/2-bam-filtration
SKILL.md
BAM Filtration for ChIP-seq / ATAC-seq
Overview
Main steps include:
- Check the availability of blacklist file in current directory. Always prompt user whether to filter blacklist if blacklist files are missing. if the user need to filter blacklist file, then prompt user for the path of blacklist file.
- Initialize the project directory and create the required directory.
- Refer to the Inputs & Outputs section to check inputs and build the output architecture. All the output file should located in
${proj_dir}in Step 0. - Discover input BAMs in the current directory (or those matching a target token), and only select BAMs that are already coordinate-sorted and contain read group (RG) information.
- Perform the filtration task with tools.
When to use this skill
- Use this skill to "clean," "filter," or "remove bad reads" from a dataset
- This is a prerequisite step before peak calling.
- Do NOT use this skill if you only want to view statistics without modifying the file.
Inputs & Outputs
Inputs
${sample}.bam # BAMs that are already coordinate-sorted and contain read group (RG) information
Outputs
all_bam_filtration/
filtered_bam/
${sample}.filtered.bam
${sample}.filtered.bam.bai
temp/
... # intermediate files
Decision Tree
Step 0: Initialize Project
Call:
mcp__project-init-tools__project_init
with:
sample: alltask: bam_filtration
The tool will:
- Create
${sample}_bam_filtrationdirectory. - Return the full path of the
${sample}_bam_filtrationdirectory, which will be used as${proj_dir}.
Step 1: Filter BAM files
Call:
- mcp__qc-tools__bam_artifacts
with:
bam_file: BAMs that are already coordinate-sorted and contain read group (RG) informationoutput_bam: ${proj_dir}/filtered_bam/${sample}.filtered.bamtemp_dir: ${proj_dir}/temp/blacklist_bed: Path of the blacklist file
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?