Skip to content

Commit

Permalink
Added a plant version of runBUSCO script as it needs a different busc…
Browse files Browse the repository at this point in the history
…o script
  • Loading branch information
aseetharam committed Jun 6, 2016
1 parent 2b08d18 commit 279ac8d
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 6 deletions.
16 changes: 10 additions & 6 deletions runBUSCO_genome.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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} \
Expand Down
30 changes: 30 additions & 0 deletions runBUSCO_plantgenomes.sh
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

0 comments on commit 279ac8d

Please sign in to comment.