Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Seqan compat/seqan2 char alphabet #12

Open
wants to merge 25 commits into
base: tcoffee
Choose a base branch
from

Commits on Sep 3, 2020

  1. Configuration menu
    Copy the full SHA
    95e3421 View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2020

  1. Merge pull request seqan#2093 from marehr/std_platfrom_not_present

    [INFRA] seqan3/std/* header files MUST NOT include any seqan3 header
    smehringer authored Sep 8, 2020
    Configuration menu
    Copy the full SHA
    e211e6d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    758fd29 View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2020

  1. Configuration menu
    Copy the full SHA
    80b2dc4 View commit details
    Browse the repository at this point in the history
  2. [FEATURE] Differentiate between simple and matrix simd score.

    Selects the correct simd scoring scheme based on the given matrix type. For the moment to test and implement the featurs of protein simd alignment
    we can use this simple static differentiation.
    Later this will be replaced by a dynamic dispatching mechanism.
    rrahn committed Sep 10, 2020
    Configuration menu
    Copy the full SHA
    0afca7e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e0472fa View commit details
    Browse the repository at this point in the history
  4. [MISC] Refactor global alignment simd benchmark.

    Makes a test template for the alignment benchmark so we can reuse it for different benchmark settings.
    rrahn committed Sep 10, 2020
    Configuration menu
    Copy the full SHA
    98f9ae1 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    96af05c View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2020

  1. [FIX] Track correct coordinate in banded alignment.

    When tracking the last cell of the banded column computation the matrix iterator was referring to the wrong alignment cell.
    rrahn committed Sep 11, 2020
    Configuration menu
    Copy the full SHA
    4eec66a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    13f00dd View commit details
    Browse the repository at this point in the history
  3. [FIX] Do not track last cell in column if not in last row of matrix.

    Before, the algorithm always tracked the last cell of the current column irrespective of its position within the global matrix.
    This means, that the optimum could point to a cell that does not represent the full sequence and hence would not be a valid semi-gobal alignment.
    rrahn committed Sep 11, 2020
    Configuration menu
    Copy the full SHA
    c392f45 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a0cfcc7 View commit details
    Browse the repository at this point in the history
  5. Merge pull request seqan#2106 from rrahn/optimise_alignment/part6_ena…

    …ble_banded_end_position
    
    Optimise alignment/part6 enable banded end position
    rrahn authored Sep 11, 2020
    Configuration menu
    Copy the full SHA
    2a40134 View commit details
    Browse the repository at this point in the history
  6. Merge pull request seqan#2108 from rrahn/protein_alignment/part1_add_…

    …microbenchmarks
    
    Protein alignment/part1 add microbenchmarks
    rrahn authored Sep 11, 2020
    Configuration menu
    Copy the full SHA
    f50d9e9 View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2020

  1. Configuration menu
    Copy the full SHA
    7ad19a7 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2020

  1. Configuration menu
    Copy the full SHA
    5ec8be7 View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2020

  1. Merge pull request seqan#2114 from marehr/update_dox

    [DOC] Update cppreference index
    smehringer authored Sep 15, 2020
    Configuration menu
    Copy the full SHA
    16ad3f8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e613754 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    93efca7 View commit details
    Browse the repository at this point in the history
  4. Merge pull request seqan#2109 from eseiler/fix/timeout

    [FIX] Timeout in debug nightlies
    smehringer authored Sep 15, 2020
    Configuration menu
    Copy the full SHA
    b0e2099 View commit details
    Browse the repository at this point in the history
  5. Merge pull request seqan#2116 from eseiler/fix/ranks

    [FIX] Wrong ranks in search algorithm
    smehringer authored Sep 15, 2020
    Configuration menu
    Copy the full SHA
    60201f8 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    0aa8f9f View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2020

  1. Merge pull request seqan#2117 from marehr/week05

    pull changes from release-3.0.2 into master - progress of week 05
    smehringer authored Sep 16, 2020
    Configuration menu
    Copy the full SHA
    d62f6ad View commit details
    Browse the repository at this point in the history

Commits on Sep 17, 2020

  1. Merge branch 'tcoffee' of https://github.com/smehringer/seqan3 into s…

    …eqan_compat/seqan2_char_alphabet
    rrahn committed Sep 17, 2020
    Configuration menu
    Copy the full SHA
    593186f View commit details
    Browse the repository at this point in the history
  2. [MISC] Apply type erasure on the alphabet types to reduce the compati…

    …bility overhead.
    
    By applying this type erasure, we are actually generic to allow any user input as long as it fulfils the respective concepts
    that are modeled explicitly for alphabets and scoring schemes.
    It also is an initial step to reduce the boiler plate overloads in
    seqan2 when we start adapting the algorithms step by step.
    rrahn committed Sep 17, 2020
    Configuration menu
    Copy the full SHA
    2aff6ec View commit details
    Browse the repository at this point in the history