The Wayback Machine - https://web.archive.org/web/20201217221034/https://github.com/topics/sequence-alignment
Skip to content
#

sequence-alignment

Here are 169 public repositories matching this topic...

peterjc
peterjc commented Dec 18, 2018

Setup

Seen with latest code from git while preparing the 1.73 release on Linux, but applies to all platforms.

Expected behaviour

$ python run_tests.py test_PDB_StructureAlignment.py
Python version: 2.7.15 | packaged by conda-forge | (default, Jul 27 2018, 10:26:36) 
[GCC 4.8.2 20140120 (Red Hat 4.8.2-15)]
Operating system: posix linux2
test_PDB_StructureAlignment ... ok
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

eseiler
eseiler commented Sep 16, 2020

Code:

#include <seqan3/argument_parser/all.hpp>

int main(int argc, char ** argv)
{
    seqan3::argument_parser parser{"App", argc, argv, seqan3::update_notifications::off};

    parser.info.author = "Foo Bar";
    parser.info.email = "foobar@example.com";
    parser.info.short_copyright = "BSD 3-Clause License";

    try
    {
        parser.parse();
    }
    catch (seqan3

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 Nov 25, 2020
  • VHDL

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

You can’t perform that action at this time.