-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: typo with too many white spaces fixed * fix: added distro and display keywords to configuration * fix: added cluster name keyword to configuration * fix: configuration for plotting dags corrected * feat: sample workflow profiles for Barnard and Mogon-NHR * feat: plotting DAGs TOC entry with background graphics * fix: account selection in job selection * fix: moved HPC 101 in front of selecting workflows * feat: added lego overview slide for code studio * feat: added cluster image to HPC 101 * feat: new reason for doing the hello world job * feat: added example code for depency - should scare users * fix: added missing lines to mogon condarc * feat: added reference to mod slide's lego figure * fix: typo * fix: attempting fix for upload * fix: typo * feat: more documentation on workflow profile
- Loading branch information
Showing
13 changed files
with
127 additions
and
50 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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
File renamed without changes.
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,29 @@ | ||
# Resource configuration for bioinformatics workflow on Mogon NHR | ||
# | ||
# This file defines resource allocations for various bioinformatics tools. | ||
# Adjust these settings based on your specific dataset characteristics: | ||
# - Input file sizes | ||
# - Genome complexity | ||
# - Coverage depth | ||
# | ||
# Remember to monitor job performance and adjust resources as needed. | ||
|
||
default-resources: | ||
slurm_partition=small_cpu | ||
|
||
set-resources: | ||
bwa_map: | ||
runtime: 5 # Adjust based on your dataset size. Typical range: 30-120 minutes | ||
mem_mb_per_cpu: 1800 # Increase for larger datasets, e.g., 3600 for 30x coverage | ||
|
||
samtools_sort: | ||
runtime: 5 # Adjust based on your dataset size. Typical range: 20-60 minutes | ||
mem_mb_per_cpu: 3600 # Sorting requires more memory. Increase for larger datasets | ||
|
||
samtools_index: | ||
runtime: 2 # Indexing is usually quick. Adjust if needed for very large files | ||
mem_mb_per_cpu: 1800 # Indexing typically requires less memory than sorting | ||
|
||
bcftools_call: | ||
runtime: 15 # Variant calling can be time-consuming. Adjust based on genome size and coverage | ||
mem_mb_per_cpu: 2400 # Increase for larger genomes or higher coverage datasets |
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
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
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
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
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
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