ross 0.1.7

A set of scripts to run basic analysis on fastq files
Documentation
#!/bin/bash

set -e

INPUT=testdata/four_reads.gt_16_lines.fastq
CORRECT=testdata/four_reads.fastq

corrected=$(./target/debug/friends_carol < testdata/four_reads.gt_16_lines.fastq)

if [ "$corrected" != "$(cat $CORRECT)" ]; then
  echo "carol did not correct the reads"
  exit 1
fi

echo "Carol passed!"