#!/bin/bash #SBATCH --export=NONE # do not export current env to the job #SBATCH --job-name=repeatmask-scout # job name #SBATCH --time=1-00:00:00 # max job run time dd-hh:mm:ss #SBATCH --ntasks-per-node=1 # tasks (commands) per compute node #SBATCH --cpus-per-task=2 # CPUs (threads) per command #SBATCH --mem=14G # total memory per node #SBATCH --output=stdout.%x.%j # save stdout to file #SBATCH --error=stderr.%x.%j # save stderr to file module load foss/2020a RepeatMasker/4.1.2-p1-RMBlast module load RepeatScout/1.0.6 < output_repeats_${SLURM_JOBID}.fas.filtered_1 # RepeatMasker RepeatMasker $rm_trf_masked_fasta -lib output_repeats_${SLURM_JOBID}.fas.filtered_1 <