SkillAgentSearch skills...

Sadie

The Complete Python Antibody Library

Install / Use

/learn @jwillis0720/Sadie
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

<!-- markdownlint-disable --> <h2 align="center" style="font-family:verdana;font-size:150%"> <b>S</b>equencing <b>A</b>nalysis and <b>D</b>ata Library for <b>I</b>mmunoinformatics <b>E</b>xploration</h2> <div align="center"> <img src="https://sadiestaticcrm.s3.us-west-2.amazonaws.com/Sadie.svg" alt="SADIE" style="margin:0.51em;width:50%"> </div> <div class="flex-container" align="center"> <div class="flex-container" align="center"> <a href="https://img.shields.io/badge/Python-3.9%7C3.10%7C3.11%7C3.12%7C3.13-blue"> <img src="https://img.shields.io/badge/Python-3.9%7C3.10%7C3.11%7C3.12%7C3.13-blue" alt="Python Version"> <a href="https://github.com/psf/black"> <img src="https://img.shields.io/badge/code%20style-black-000000.svg" alt="Format Version"> <a href="https://codecov.io/gh/jwillis0720/sadie"> <img src="https://codecov.io/github/jwillis0720/sadie/graph/badge.svg?token=EH9QEX4ZMP"/> <a href="https://github.com/pre-commit/pre-commit"> </div> <div class="flex-container" align="center"> <img src="https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white" alt="pre commit"> <a href="https://pypi.org/project/sadie-antibody"> <img src="https://img.shields.io/pypi/v/sadie-antibody?color=blue" alt='pypi'> <a href="https://sadie.jordanrwillis.com" > <img src="https://api.netlify.com/api/v1/badges/59ff956c-82d9-4900-83c7-758ed21ccb34/deploy-status" alt="Documentation"> </a> <a href="https://github.com/jwillis0720/sadie/actions/workflows/docs.yml" > <img src="https://github.com/jwillis0720/sadie/actions/workflows/docs.yml/badge.svg" alt="Documentation"> </a> </div> <div class="flex-container" align="center"> <a href="https://github.com/jwillis0720/sadie/actions/workflows/pyright.yml/badge.svg"> <img src="https://github.com/jwillis0720/sadie/actions/workflows/pyright.yml/badge.svg" alt="Static Type"> </div> </div> <!-- markdownlint-restore -->

About


<!-- use a href so you can use _blank to open new tab -->

Documentation: <a href="https://sadie.jordanrwillis.com" target="_blank">https://sadie.jordanrwillis.com</a>

Source Code: <a href="https://github.com/jwillis0720/sadie" target="_blank">https://github.com/jwillis0720/sadie</a>

Colab: https://colab.research.google.com/github/jwillis0720/sadie


SADIE is the Sequencing Analysis and Data library for Immunoinformatics Exploration. The key feautures include:

  • Provide pre-built command line applications for popular immunoinformatics applications.

  • Provide a low-level API framework for immunoinformatics developers to build higher level tools.

  • Provide a testable and reusable library that WORKS!

  • Provide a customizable and verified germline reference library.

  • Maintain data formats consistent with standards governed by the AIRR community

  • Portability ready to use out the box.

SADIE is billed as a "complete antibody library", not because it aims to do everything, but because it aims to meet the needs of all immunoinformatics users. SADIE contains both low, mid and high level functionality for immunoinformatics tools and workflows. You can use SADIE as a framework to develop your own tools, use many of the prebuilt contributed tools, or run it in a notebook to enable data exploration. In addition, SADIE aims to port all code to python because relies heavily on the Pandas library, the workhorse of the data science/machine learning age.

Installation


Installation is handled using the python package installer pip

$ pip install sadie-antibody

Development installation.

Pull requests are highly encouraged here. The development installation uses pre-commit, flake8 linting and black style formatting to maintain code readability and reausability.

$ git clone git@github.com/jwillis0720/sadie.git
$ pip install poetry
$ poetry install --with dev

Quick Usage

Consult the documentation for complete usage. Or checkout our Colab notebook

Command Line Usage

Annotate antibody sequences only from functional human imgt antibodies to a gzip output

$ sadie airr my_sequence.fasta

API

from sadie.airr import Airr
# define a single sequence
pg9_seq = """
    CAGCGATTAGTGGAGTCTGGGGGAGGCGTGGTCCAGCCTGGGTCGTCCCTGAGACTCTCCTGTGCAGCGT
    CCGGATTCGACTTCAGTAGACAAGGCATGCACTGGGTCCGCCAGGCTCCAGGCCAGGGGCTGGAGTGGGT
    GGCATTTATTAAATATGATGGAAGTGAGAAATATCATGCTGACTCCGTATGGGGCCGACTCAGCATCTCC
    AGAGACAATTCCAAGGATACGCTTTATCTCCAAATGAATAGCCTGAGAGTCGAGGACACGGCTACATATT
    TTTGTGTGAGAGAGGCTGGTGGGCCCGACTACCGTAATGGGTACAACTATTACGATTTCTATGATGGTTA
    TTATAACTACCACTATATGGACGTCTGGGGCAAAGGGACCACGGTCACCGTCTCGAGC""".replace(
    "\n", ""
)

# initialize the api
air_api = Airr("human")

# run single sequence string
airr_table = air_api.run_single("PG9", pg9_seq)

License

License

  • Copyright © Jordan R. Willis, Troy M. Sincomb & Caleb K. Kibet
View on GitHub
GitHub Stars24
CategoryDevelopment
Updated4mo ago
Forks5

Languages

Python

Security Score

87/100

Audited on Nov 7, 2025

No findings