Agent skill

bio-atac-seq-allele-specific-accessibility

Detect allele-specific chromatin accessibility from ATAC-seq using WASP, GATK ASEReadCounter, or RASQUAL. Use when mapping cis-regulatory genetic variants from heterozygous SNPs, separating cis from trans regulation, building chromatin QTL (caQTL) maps, validating GWAS variant function with allelic imbalance, or detecting reference allele mapping bias before downstream analysis.

BioTender-maxgithub.com/BioTender-maxGitHub ↗
claude-codeships scriptsNOASSERTION
Install
npx skills add BioTender-max/awesome-bio-agent-skills --skill allele-specific-accessibility --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 3
SKILL.md size: 16 KB
Bundled scripts: yes
Path: skills/bioskills/allele-specific-accessibility/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 135
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

## Version Compatibility Reference examples tested with: WASP 0.3.4+, GATK 4.4+, RASQUAL 1.1+, samtools 1.19+, bcftools 1.19+, vcftools 0.1.16+, plink 2.00+, MatrixEQTL 2.3+, QuASAR 0.1+, bowtie2 2.5+, bwa-mem2 2.2.1+. Verify before use: - CLI: `<tool> --version` then `<tool> --help` to confirm flags - Python: `pip show <package>` then `help(module.function)` to check signatures - R: `packageVersion('<pkg>')` then `?function_name` to verify parameters If code throws unexpected errors, introspect the installed package and adapt rather than retrying. # Allele-Specific Accessibility **"Does this heterozygous SNP affect chromatin accessibility on its allele?"** -> Count ATAC reads supporting reference vs alternative allele at heterozygous sites in the same individual; significant deviation from 50:50 indicates cis-regulatory effect. Requires careful handling of reference-allele mapping bias (WASP filtering) and within-individual binomial testing. - CLI: `WASP` (Geijn 2015) for de-biased reference mapping - CLI: `gatk ASEReadCounter` for allele-specific count tables - CLI: `RASQUAL` (Kumasaka 2016) for joint cis-mapping with allelic counts - R: `QuASAR` (Harvey 2015) for genotype + ASE

What's inside
Steps it walks through
  1. Version Compatibility
  2. Algorithmic Taxonomy
  3. Reference Allele Mapping Bias (The Single Most Important Issue)
  4. Per-Tool Failure Modes
  5. GATK ASEReadCounter without WASP -- Reference bias
  6. Sample size for ASE per SNP
  7. RASQUAL -- LD computation requirement
  8. WASP -- Phased vs unphased genotypes
  9. Cohort-level caQTL without allelic info
  10. Read-deep peak coverage required
  11. Decision Tree by Setting
  12. Cohort caQTL Pipeline
  13. Within-Peak ASE Aggregation
  14. RASQUAL Joint Modeling
Ships with 2 files
  • examples/wasp_ase_pipeline.sh
  • usage-guide.md
Commands it runs
WASP read-correction pipeline (Geijn 2015)
python $WASP_DIR/mapping/find_intersecting_snps.py \
bowtie2 -x hg38_idx -1 wasp_out/$SAMPLE.remap.fq1.gz \
samtools view -bS wasp_out/$SAMPLE.remap.sam | samtools sort -o wasp_out/$SAMPLE.remap.bam
samtools index wasp_out/$SAMPLE.remap.bam
python $WASP_DIR/mapping/filter_remapped_reads.py \
samtools merge $OUT \
After WASP filtering, GATK ASEReadCounter is safe
gatk ASEReadCounter \
for sample in $(cat samples.txt); do
More from awesome-bio-agent-skills
All skills →
About this skill
What does the bio-atac-seq-allele-specific-accessibility skill do?

Detect allele-specific chromatin accessibility from ATAC-seq using WASP, GATK ASEReadCounter, or RASQUAL. Use when mapping cis-regulatory genetic variants from heterozygous SNPs, separating cis from trans regulation, building chromatin QTL (caQTL) maps, validating GWAS variant function with allelic imbalance, or detecting reference allele mapping bias before downstream analysis.

How do I install it?

Run `npx skills add BioTender-max/awesome-bio-agent-skills --skill allele-specific-accessibility --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From BioTender-max/awesome-bio-agent-skills, a repository with 135 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going