agentsclimarketplace

Mixcr analysis

Skill BioTender-max/awesome-bio-agent-skills/skills/bioskills/mixcr-analysis

A curated collection of AI agent skills for biomedical research, covering genomics, proteomics, single-cell analysis, clinical AI, and protein design.

Install
npx -y skills add BioTender-max/awesome-bio-agent-skills --skill mixcr-analysis

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

What its author says it does

Copied from the file, not written here

Perform V(D)J alignment and clonotype assembly from TCR-seq or BCR-seq data using MiXCR. Use when processing raw immune repertoire sequencing data to identify clonotypes and their frequencies.

SKILL.md

4.7 KB, ~1.2k tokens by cl100k_base, as published. Nobody here has run it

Version Compatibility

Reference examples tested with: MiXCR 4.6+, pandas 2.2+

Before using code patterns, verify installed versions match. If versions differ:

  • Python: pip show <package> then help(module.function) to check signatures
  • CLI: <tool> --version then <tool> --help to confirm flags

If code throws ImportError, AttributeError, or TypeError, introspect the installed package and adapt the example to match the actual API rather than retrying.

MiXCR Analysis

"Extract TCR/BCR clonotypes from my sequencing data" → Assemble immune receptor sequences from raw reads, identify V(D)J gene segments, and generate clonotype tables for repertoire analysis.

  • CLI: mixcr analyze for end-to-end TCR/BCR extraction and clonotype assembly

Complete Workflow (Recommended)

Goal: Run end-to-end V(D)J alignment and clonotype assembly from raw FASTQ files in a single command.

Approach: Use MiXCR's preset-based analyze command which chains alignment, assembly, and export steps automatically.

mixcr analyze generic-tcr-amplicon \
    --species human \
    --rna \
    --rigid-left-alignment-boundary \
    --floating-right-alignment-boundary C \
    input_R1.fastq.gz input_R2.fastq.gz \
    output_prefix

mixcr analyze 10x-vdj-tcr \
    input_R1.fastq.gz input_R2.fastq.gz \
    output_prefix

Step-by-Step Workflow

Goal: Process immune repertoire data through individual alignment, refinement, assembly, and export stages for fine-grained control.

Approach: Chain MiXCR CLI steps sequentially: align reads to V(D)J references, refine UMIs and sort, assemble clonotypes, then export results.

Step 1: Align Reads

mixcr align \
    --species human \
    --preset generic-tcr-amplicon-umi \
    input_R1.fastq.gz input_R2.fastq.gz \
    alignments.vdjca

mixcr align \
    --species human \
    --rna \
    -OallowPartialAlignments=true \
    input_R1.fastq.gz input_R2.fastq.gz \
    alignments.vdjca

Step 2: Refine and Assemble

mixcr refineTagsAndSort alignments.vdjca alignments_refined.vdjca

mixcr assemble alignments_refined.vdjca clones.clns

Step 3: Export Results

mixcr exportClones \
    --chains TRB \
    --preset full \
    clones.clns \
    clones.tsv

mixcr exportClones \
    --chains TRB \
    -cloneId -readCount -readFraction \
    -nFeature CDR3 -aaFeature CDR3 \
    -vGene -dGene -jGene \
    clones.clns \
    clones_custom.tsv

Preset Protocols

ProtocolUse Case
generic-tcr-ampliconTCR amplicon sequencing
generic-bcr-ampliconBCR amplicon sequencing
generic-tcr-amplicon-umiTCR amplicon with UMIs
rnaseq-tcrTCR extraction from bulk RNA-seq
rnaseq-bcrBCR extraction from bulk RNA-seq
10x-vdj-tcr10x Genomics TCR enrichment
10x-vdj-bcr10x Genomics BCR enrichment
takara-human-tcr-v2Takara SMARTer kit

Species Support

mixcr align --species human ...
mixcr align --species mmu ...

# Available: human, mmu, rat, rhesus, dog, pig, rabbit, chicken

Output Format

ColumnDescription
cloneIdUnique clone identifier
readCountNumber of reads
cloneFractionProportion of repertoire
nSeqCDR3Nucleotide CDR3 sequence
aaSeqCDR3Amino acid CDR3 sequence
allVHitsWithScoreV gene assignments
allDHitsWithScoreD gene assignments
allJHitsWithScoreJ gene assignments

Quality Metrics

Goal: Assess alignment and assembly quality to identify problematic samples.

Approach: Export MiXCR alignment reports and check key success rate metrics.

mixcr exportReports alignments.vdjca

# Key metrics:
# - Successfully aligned reads (>80% is good)
# - CDR3 found (>70% of aligned)
# - Clonotype count (varies by sample type)

Parse MiXCR Output in Python

Goal: Load MiXCR clonotype tables into pandas for downstream analysis and integration.

Approach: Read tab-delimited export files and rename columns to standardized names.

import pandas as pd

def load_mixcr_clones(filepath):
    df = pd.read_csv(filepath, sep='\t')
    df = df.rename(columns={
        'readCount': 'count',
        'cloneFraction': 'frequency',
        'aaSeqCDR3': 'cdr3_aa',
        'nSeqCDR3': 'cdr3_nt'
    })
    return df

Related Skills

  • vdjtools-analysis - Downstream diversity analysis
  • scirpy-analysis - Single-cell VDJ integration
  • repertoire-visualization - Visualize MiXCR output

What ships with it: 2 files

3.6 KB alongside SKILL.md, 1 of them executable

examples/

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.