Skip to content

Commit

Permalink
Merge pull request #739 from Gaius-Augustus/compleasm
Browse files Browse the repository at this point in the history
Compleasm
  • Loading branch information
KatharinaHoff authored Jan 12, 2024
2 parents 90e3578 + 3b888cb commit e8e008b
Show file tree
Hide file tree
Showing 14 changed files with 7,324 additions and 73 deletions.
144 changes: 97 additions & 47 deletions README.md

Large diffs are not rendered by default.

Binary file added docs/figs/best_by_compleasm.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 5 additions & 2 deletions example/docker-tests/test1.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,11 @@ fi

# --gm_max_intergenic 10000 option is used here only to make the test run faster.
# It is not recommended to use this option in real BRAKER runs. The speed increase
# achieved by adjusting this option is negligible on full-sized genomes.
# achieved by adjusting this option is negligible on full-sized genomes. Also,
# --skipOptimize is used here only to make the test run faster.
# Use an appropriate BUSCO lineage in real life use case. eukaryota_odb10 is used here
# only to make the test run faster.

export GENEMARK_PATH=$GENEMARK_PATH/gmes

( time braker.pl --genome=/opt/BRAKER/example/genome.fa --bam=/opt/BRAKER/example/RNAseq.bam --workingdir=$wd --threads 8 --gm_max_intergenic 10000 --skipOptimize ) &> test1.log
( time braker.pl --genome=/opt/BRAKER/example/genome.fa --bam=/opt/BRAKER/example/RNAseq.bam --workingdir=$wd --threads 8 --gm_max_intergenic 10000 --skipOptimize --busco_lineage eukaryota_odb10 ) &> test1.log
7 changes: 5 additions & 2 deletions example/docker-tests/test2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,14 @@ fi

# --gm_max_intergenic 10000 option is used here only to make the test run faster.
# It is not recommended to use this option in real BRAKER runs. The speed increase
# achieved by adjusting this option is negligible on full-sized genomes.
# achieved by adjusting this option is negligible on full-sized genomes. Also,
# --skipOptimize is used here only to make the test run faster.
# Use an appropriate BUSCO lineage in real life use case. eukaryota_odb10 is used here
# only to make the test run faster.

# For instructions on how to prepare the proteins.fa input file from OrthoDB,
# see https://github.com/gatech-genemark/ProtHint#protein-database-preparation

export GENEMARK_PATH=$GENEMARK_PATH/gmes

( time braker.pl --genome=/opt/BRAKER/example/genome.fa --prot_seq=/opt/BRAKER/example/proteins.fa --workingdir=$wd --threads=8 --gm_max_intergenic 10000 --skipOptimize ) &> test2.log
( time braker.pl --genome=/opt/BRAKER/example/genome.fa --prot_seq=/opt/BRAKER/example/proteins.fa --workingdir=$wd --threads=8 --gm_max_intergenic 10000 --skipOptimize --busco_lineage eukaryota_odb10 ) &> test2.log
7 changes: 5 additions & 2 deletions example/docker-tests/test3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,12 @@ fi

# --gm_max_intergenic 10000 option is used here only to make the test run faster.
# It is not recommended to use this option in real BRAKER runs. The speed increase
# achieved by adjusting this option is negligible on full-sized genomes.
# achieved by adjusting this option is negligible on full-sized genomes. Also,
# --skipOptimize is used here only to make the test run faster.
# Use an appropriate BUSCO lineage in real life use case. eukaryota_odb10 is used here
# only to make the test run faster.

# For instructions on how to prepare the proteins.fa input file from OrthoDB,
# see https://github.com/gatech-genemark/ProtHint#protein-database-preparation

( time braker.pl --genome=/opt/BRAKER/example/genome.fa --prot_seq=/opt/BRAKER/example/proteins.fa --bam=/opt/BRAKER/example/RNAseq.bam --workingdir=$wd --threads 8 --skipOptimize ) &> test3.log
( time braker.pl --genome=/opt/BRAKER/example/genome.fa --prot_seq=/opt/BRAKER/example/proteins.fa --bam=/opt/BRAKER/example/RNAseq.bam --workingdir=$wd --threads 8 --skipOptimize --busco_lineage eukaryota_odb10 ) &> test3.log
2 changes: 1 addition & 1 deletion example/singularity-tests/test1.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ if [ -d $wd ]; then
rm -r $wd
fi

singularity exec -B ${PWD}:${PWD} ${BRAKER_SIF} braker.pl --genome=/opt/BRAKER/example/genome.fa --bam=/opt/BRAKER/example/RNAseq.bam --workingdir=${wd} --GENEMARK_PATH=${ETP}/gmes --threads 8 --gm_max_intergenic 10000 --skipOptimize
singularity exec -B ${PWD}:${PWD} ${BRAKER_SIF} braker.pl --genome=/opt/BRAKER/example/genome.fa --bam=/opt/BRAKER/example/RNAseq.bam --workingdir=${wd} --GENEMARK_PATH=${ETP}/gmes --threads 8 --gm_max_intergenic 10000 --skipOptimize --busco_lineage eukaryota_odb10 &> test1.log

# Important: the options --gm_max_intergenic 10000 --skipOptimize should never be applied to a real life run!!!
# They were only introduced to speed up the test. Please delete them from the script if you use it for real data analysis.
Expand Down
2 changes: 1 addition & 1 deletion example/singularity-tests/test2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ if [ -d $wd ]; then
rm -r $wd
fi

singularity exec -B ${PWD}:${PWD} ${BRAKER_SIF} braker.pl --genome=/opt/BRAKER/example/genome.fa --prot_seq=/opt/BRAKER/example/proteins.fa --workingdir=${wd} --threads 8 --gm_max_intergenic 10000 --skipOptimize
singularity exec -B ${PWD}:${PWD} ${BRAKER_SIF} braker.pl --genome=/opt/BRAKER/example/genome.fa --prot_seq=/opt/BRAKER/example/proteins.fa --workingdir=${wd} --threads 8 --gm_max_intergenic 10000 --skipOptimize --busco_lineage eukaryota_odb10 &> test2.log
# Important: the options --gm_max_intergenic 10000 --skipOptimize should never be applied to a real life run!!!
# They were only introduced to speed up the test. Please delete them from the script if you use it for real data analysis.

Expand Down
4 changes: 2 additions & 2 deletions example/singularity-tests/test3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ if [ -d $wd ]; then
fi

singularity exec -B ${PWD}:${PWD} ${BRAKER_SIF} braker.pl --genome=/opt/BRAKER/example/genome.fa --prot_seq=/opt/BRAKER/example/proteins.fa --bam=/opt/BRAKER/example/RNAseq.bam --workingdir=${wd} \
--threads 8 --gm_max_intergenic 10000 --skipOptimize
--threads 8 --gm_max_intergenic 10000 --skipOptimize --busco_lineage eukaryota_odb10 &> test3.log

# Important: the options --gm_max_intergenic 10000 --skipOptimize should never be applied to a real life run!!!
# They were only introduced to speed up the test. Please delete them from the script if you use it for real data analysis.
# They were only introduced to speed up the test. Please delete them from the script if you use it for real data analysis.
Loading

0 comments on commit e8e008b

Please sign in to comment.