Skip to content
#

sequence-alignment

Here are 213 public repositories matching this topic...

randrick
randrick commented Oct 4, 2017

You can get aligner to work on windows command line by inserting the following lines into aligner.ccp
after line 8: #include <queue>

#ifdef _WIN32
#include "getopt.h"
#endif

#include "edlib.h"

Then adding getopt.h file. The one I used is here: https://raw.githubusercontent.com/skandhurkat/Getopt-for-Visual-Studio/master/getopt.h although that's likely not the origin of the fi

SneakySnake🐍 is the first and the only pre-alignment filtering algorithm that works efficiently and fast on modern CPU, FPGA, and GPU architectures. It greatly (by more than two orders of magnitude) expedites sequence alignment calculation for both short and long reads. Described in the Bioinformatics (2020) by Alser et al. https://arxiv.org/abs/1910.09020.

  • Updated May 12, 2021
  • VHDL
mortonjt
mortonjt commented Jul 3, 2020

We'll need to standardize the CPU / GPU version of needleman-wunsch.

  • Make sure that batching can be handled on the CPU (a hacked version is ok, will need to make sure that dimensions aren't an issue)
  • Make sure that the appropriate flags checking for devices are in place.
good first issue

Improve this page

Add a description, image, and links to the sequence-alignment topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the sequence-alignment topic, visit your repo's landing page and select "manage topics."

Learn more