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

Total hit counts added #15

Open
wants to merge 4 commits into
base: rust-bit-packed
Choose a base branch
from

Commits on May 21, 2020

  1. Update filepaths in python script

    To align with the rust files, I had to re-add the missing RNAs.fasta file to the fixtures directory and update the filename in the python count script from RNAseqs.fasta to RNAs.fasta.
    sarahsummerfield committed May 21, 2020
    Configuration menu
    Copy the full SHA
    bb177ed View commit details
    Browse the repository at this point in the history
  2. Report total hit counts for each result

    Super naive implementation of feature to report total hit counts added. For each search result reported, it now also prints out the running total of hits for each DCE. This is accomplished by adding a "hits" field to the CompressedSeq struct, making the needle mutable, and incrementing its hits number every time there is a match while searching.
    Adaptations are still required to create results matching the python version, i.e. writing out to a results file that contains the name of each DCE that had >= 1 hit, and the total number of hits it had.
    sarahsummerfield committed May 21, 2020
    Configuration menu
    Copy the full SHA
    a47c791 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9b1f645 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2020

  1. Add input arguments and print to file

    This is a "functioning" version with the input arguments and print to file features added, but it is incredibly slow and total hits count doesn't work properly with the way main iterates through the sequences.
    sarahsummerfield committed May 22, 2020
    Configuration menu
    Copy the full SHA
    f2ec751 View commit details
    Browse the repository at this point in the history