Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 1.03 KB

README.md

File metadata and controls

29 lines (24 loc) · 1.03 KB

Rosalind

Solution of Rosalind problems in Rust
Find me at the website

How to run

  1. specify the corresponding module in src/main.rs

    e.g. to run the DNA module, you should specify the following line in src/main.rs

    stronghold::DNA::run(content);
    • category of problems -> module
      • python village -> INI
      • bioinformatics stronghold -> stronghold
      • bioinformatics armory -> armory
      • bioinformatics textbook track -> BA*
  2. run the following command

    cargo run <path/to/input/data>

    You can also use the run.sh script to run the program

    ./run.sh test # run the program with test data (the test input should be :`data/test.txt`)
    ./run.sh ba1a # run the program with the input data of the problem `BA1A` (the input data should be :`data/ba1a.txt or in ~/Downloads/ba1a.txt`)

copyright by Rachel Seongeun Kim