-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a plant version of runBUSCO script as it needs a different busc…
…o script
- Loading branch information
1 parent
2b08d18
commit 279ac8d
Showing
2 changed files
with
40 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,24 +5,28 @@ | |
# sh runBUSCO_genome.sh genome.fasta | ||
# Arun Seetharam | ||
# 2015/10/09 <[email protected]> | ||
|
||
#+++++++++++++++++++++ | ||
ORG=plantae | ||
#ORG=arthropoda | ||
# | ||
##################################### | ||
# DO NOT USE THIS FOR PLANT BUSCOS | ||
##################################### | ||
# | ||
# | ||
ORG=arthropoda | ||
#ORG=bacteria | ||
#ORG=eukaryota | ||
#ORG=fungi | ||
#ORG=metazoa | ||
#ORG=vertebrata | ||
#++++++++++++++++++++ | ||
|
||
# (select one of the aboove) | ||
# results will be stored in the new directroy with the genome suffix | ||
|
||
|
||
module use /shared/software/GIF/modules | ||
module load busco/1.2 | ||
genome="$1" | ||
outname=$(basename ${genome%.*}) | ||
python3 ${BUSCO}/busco.py \ | ||
python3 ${BUSCO_HOME}/busco.py \ | ||
-o ${outname} \ | ||
-in ${genome} \ | ||
-l ${PROFILES}/${ORG} \ | ||
|
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,30 @@ | ||
#!/bin/bash | ||
# runs the busco pipeline on the genome assesment mode | ||
# if your genome is not plan change the select the suitable option below | ||
# run it as: | ||
# sh runBUSCO_genome.sh genome.fasta | ||
# Arun Seetharam | ||
# 2015/10/09 <[email protected]> | ||
# | ||
##################################### | ||
# ONLY FOR PLANT BUSCOS | ||
##################################### | ||
# | ||
# | ||
ORG=plantae | ||
|
||
# (select one of the aboove) | ||
# results will be stored in the new directroy with the genome suffix | ||
|
||
|
||
module use /shared/software/GIF/modules | ||
module load busco/1.2_plants | ||
genome="$1" | ||
outname=$(basename ${genome%.*}) | ||
python3 ${BUSCO_HOME}/busco.py \ | ||
-o ${outname} \ | ||
-in ${genome} \ | ||
-l ${PROFILES}/${ORG} \ | ||
-m all \ | ||
-c 16 \ | ||
-f |