-
Assess our Design Doc to gain an thorough understanding of our project's Problem Statement, Objectives, Proposed Solution, and Implementation Plan.
-
Use GitPod Flex to create a dev environment:
- Navigate to https://app.gitpod.io/
- Select "Continue with GitHub", authorize Gitpod to access your GitHub account, and sign in with your credentials
- In the Mid-Atlantic-SDP4PHB-2025 organization, create a new environment
- Set the repository to https://github.com/theiagen/Mid-Atlantic-SDP4PHB-2025/
- Click on the "Open with VS Code" button
- Familiarize yourself with the VSCode environment
- Assess the fastq-peek.sh software and test it using the benchmark read data:
./bin/fastq-peek.sh ./data/sample.fastq
-
Begin modifying fastq-peek.sh to calculate
GC_COUNT
,TOTAL_BASE_COUNT
, &GC_PERCENT
; reportGC_PERCENT
tostdout
- Test your solutions using the benchmark read data
- Calculated GC Content for this input fastq file should equal 50%
- Be sure to adhere to the repository style guide when modifying fastq-peek.sh
- Test your solutions using the benchmark read data
-
Save your changes within your workspace
-
Once you're finished working, make sure to shut down your workspace. Click on the toggle next to "Running", either on VS Code or on Gitpod Flex platform, to turn everything off.
Exercise 1 Solution
A modified fastq-peek.sh code with gc-count calculation and reporting can be found in the back of the book.