Skip to content

Latest commit

 

History

History
47 lines (41 loc) · 1.89 KB

File metadata and controls

47 lines (41 loc) · 1.89 KB

Overview

Starting out without cargo, instead just using rustc to compile simple source code. This is already much nicer for this stage, as it makes stashing these outputs much simpler and keeps git cleaner.

Covering concepts such as:

For the sake of file reading, the file I am reading is generated by:

echo ">seq_1"            > test_file.fna
echo "ATCGATCGATCGATCG" >> test_file.fna
echo ">seq_2"           >> test_file.fna
echo "TTGGCCAANNAATTCC" >> test_file.fna

Fin.