Git Product home page Git Product logo

lynxaligner's Introduction

LynxAligner

Notice: This project is still under active development and not guaranteed to have a stable API.

LynxAligner, inspired by the agility and precision of a lynx, is a sequence alignment software developed using Rust and the seed-extend algorithm, designed for efficient and accurate bioinformatics data analysis.

The seed-extend model is a popular approach in bioinformatics for sequence alignment, especially useful for handling large genomic datasets efficiently. This model typically works in two stages:

  • Seed: Identifies short, exact matches (seeds) between two sequences or within a database. These seeds are potential starting points for longer alignments.

  • Extend: Expands these seeds in both directions, aligning additional nucleotides until the alignment score falls below a certain threshold.

This approach is effective in balancing the speed (by quickly identifying potential alignment regions through seeding) and accuracy (by extending and scoring these regions) of the alignment process.

Install

# Cargo.toml
[dependencies]
aligners = {git="https://github.com/dongspy/aligners.git"}

Usage

use bio::alignment::pairwise::Scoring;
use aligners::aligner::Aligner;

fn main() {
    let refs = ["CCCCACGTCCACGTGGGGGGA", "ACGTACGTACGTGGGGG"];

    let scoring = Scoring::from_scores(-4, -2, 2, -2).xclip(-5).yclip(0);
    let aligner = Aligner::new(&refs, scoring, 8, 8);
    let reads = vec![
        "CCCACCTACGTGGG",
    ];
    let matches = aligner.find_read_matches(reads[0], 15);
    dbg!(matches);
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.