mirror of
http://43.156.76.180:8026/YuuMJ/EukPhylo.git
synced 2025-12-27 22:40:24 +08:00
16 lines
814 B
Bash
16 lines
814 B
Bash
#!/bin/bash
|
|
## Last updated Jan 2025 by Auden Cote-L'Heureux
|
|
|
|
## This script is intended to be used to process genomic CDS with EukPhylo part 1 on an HPC that uses the Slurm workload manager.
|
|
## The first part of the script are Slurm-specific parameters that should be adjusted by users to fit their resource allocation
|
|
## needs and restrictions, followed by some example commands taken from the GitHub Wiki, more detail for which can be found
|
|
## here: https://github.com/Katzlab/EukPhylo/wiki/EukPhylo-Part-1:-GF-assignment
|
|
|
|
|
|
|
|
## Example commands
|
|
|
|
# A simple run that goes from script 1 to script 7 (the last script) using the Universal genetic code
|
|
python3 Scripts/wrapper.py --first_script 1 --last_script 7 --assembled_transcripts AssembledTranscripts --genetic_code Gcode.txt --databases Databases > log.out
|
|
|