-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c54ebc0
commit a223837
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Create a simple Snakefile for a bioinformatics workflow using Snakemake and conda, including: | ||
|
||
- Trimmomatic: Trim and clean raw sequencing data. | ||
- FastQC: Perform quality control on trimmed data. | ||
|
||
Requirements: | ||
|
||
- Trimmomatic Rules: Process all input files in the raw_data directory. | ||
- FastQC Rules: Run only on trimmed data. | ||
|
||
Conda Configuration: | ||
- Include conda configurations for each tool. | ||
- Use a single environment.yml file for the entire workflow. | ||
- Snakemake 8.25.5 is already installed. Do not include this in the yml file | ||
|
||
Input Data: | ||
- Unzipped FASTQ files in {input_directory}/data. | ||
|
||
Deliverables: | ||
- Snakefile with specified rules and configurations. | ||
- environment.yml file with dependencies. |