Claude-skill-registry BAM-filtration
Performs data cleaning and removal operations. This skill takes a raw BAM and creates a new, "clean" BAM file by actively removing artifacts: mitochondrial reads, blacklisted regions, PCR duplicates, and unmapped reads. 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.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/2-bam-filtration" ~/.claude/skills/majiayu000-claude-skill-registry-bam-filtration && rm -rf "$T"
manifest:
skills/data/2-bam-filtration/SKILL.mdsource content
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
in Step 0.${proj_dir} - 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:
: allsample
: bam_filtrationtask
The tool will:
- Create
directory.${sample}_bam_filtration - Return the full path of the
directory, which will be used as${sample}_bam_filtration
.${proj_dir}
Step 1: Filter BAM files
Call:
- mcp__qc-tools__bam_artifacts
with:
: BAMs that are already coordinate-sorted and contain read group (RG) informationbam_file
: ${proj_dir}/filtered_bam/${sample}.filtered.bamoutput_bam
: ${proj_dir}/temp/temp_dir
: Path of the blacklist fileblacklist_bed