-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
3 changed files
with
40 additions
and
2 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
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,38 @@ | ||
##### first build the database then run repeatmodeler | ||
#PBS -l walltime=48:00:00 | ||
#PBS -l select=1:ncpus=64:mem=244gb | ||
|
||
cd $PBS_O_WORKDIR | ||
|
||
module load anaconda3/personal | ||
source activate repeatmodeler | ||
|
||
singularity exec \ | ||
--bind $PWD:$PWD \ | ||
dfam-tetools-latest.sif BuildDatabase -name "ragtag.assemblies" -dir ragtag.assemblies | ||
|
||
singularity exec \ | ||
--bind $PWD:$PWD \ | ||
dfam-tetools-latest.sif RepeatModeler \ | ||
-database ragtag.assemblies \ | ||
-pa 32 -LTRStruct | ||
|
||
|
||
##### then run repeatmasker using customised TE library | ||
#PBS -l walltime=24:00:00 | ||
#PBS -l select=1:ncpus=64:mem=124gb | ||
|
||
cd $PBS_O_WORKDIR | ||
|
||
module load anaconda3/personal | ||
source activate repeatmodeler | ||
|
||
singularity exec \ | ||
--bind $PWD:$PWD \ | ||
dfam-tetools-latest.sif \ | ||
RepeatMasker -lib ragtag.assemblies-families.manual.mimps.schmidt.fa \ | ||
-pa 32 -s \ | ||
-dir RM_out \ | ||
-alignments \ | ||
-gff -no_is \ | ||
ragtag.assemblies/*.fasta |