Skip to content

Commit

Permalink
update scripts and minor edits
Browse files Browse the repository at this point in the history
  • Loading branch information
tavareshugo committed Mar 19, 2024
1 parent 63bfef8 commit b1a0be2
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion course_files/slurm/drosophila_genome_indexing.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# these lines are needed to source the mamba activate command
# include them if you want to activate environments in your script
eval "$(conda shell.bash hook)"
source $(mamba info --base)/etc/profile.d/mamba.sh
source $CONDA_PREFIX/etc/profile.d/mamba.sh

# activate conda environment
FIXME
Expand Down
2 changes: 1 addition & 1 deletion course_files/slurm/parallel_drosophila_mapping.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# these lines are needed to source the mamba activate command
# include them if you want to activate environments in your script
eval "$(conda shell.bash hook)"
source $(mamba info --base)/etc/profile.d/mamba.sh
source $CONDA_PREFIX/etc/profile.d/mamba.sh

# activate conda environment
mamba activate mapping
Expand Down
2 changes: 1 addition & 1 deletion course_files/slurm/parallel_turing_pattern.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ echo "Starting array: $SLURM_ARRAY_TASK_ID"
# these lines are needed to source the mamba activate command
# include them if you want to activate environments in your script
eval "$(conda shell.bash hook)"
source $(mamba info --base)/etc/profile.d/mamba.sh
source $CONDA_PREFIX/etc/profile.d/mamba.sh

# activate conda environment
mamba activate scipy
Expand Down
10 changes: 10 additions & 0 deletions course_files/slurm/seqkit_singularity.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash
#SBATCH -p training # name of the partition to run job on
#SBATCH -D /home/FIX-YOUR-USERNAME/scratch/hpc_workshop/ # working directory
#SBATCH -o logs/seqkit.log # standard output file
#SBATCH -c 1 # number of CPUs. Default: 1
#SBATCH --mem=1G # RAM memory. Default: 1G
#SBATCH -t 00:10:00 # time for the job HH:MM:SS. Default: 1 min

# Your singularity command here
singularity FIXME

0 comments on commit b1a0be2

Please sign in to comment.