This skill covers processing Hi-C read pairs using pairtools, including parsing, sorting, deduplication, and filtering to generate valid contact pairs.
conda install -c bioconda pairtools coolerTell your AI agent what you want to do:
- "Process my Hi-C BAM file with pairtools"
- "Filter valid pairs from my pairs file"
"Parse Hi-C pairs from this BAM"
"Remove duplicates from my pairs file"
"Select only UU pair types"
"Remove self-ligation artifacts"
"Get statistics from my pairs file"
"How many valid pairs do I have?"
- Parse alignments to pairs format
- Sort pairs by position
- Remove PCR duplicates
- Filter by pair type
- Generate statistics
- Pair types - UU (unique-unique) are highest confidence
- MAPQ - Filter for MAPQ >= 30 for quality
- Self-ligation - Remove pairs < 1kb apart
- Pipeline - Use pipes to chain operations