Skip to content

Commit

Permalink
changelog + make-targz
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewprzh committed Jul 22, 2016
1 parent fd6ffb4 commit 8ccafb3
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 deletions.
6 changes: 5 additions & 1 deletion assembler/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ <h2>SPAdes Genome Assembler changelog</h2>

<h3>SPAdes 3.9.0, 23 July 2016</h3>

NEW: rnaSPAdes pipeline for de novo transcriptome assembly from RNA-Seq data.
<p>NEW: rnaSPAdes pipeline for de novo transcriptome assembly from RNA-Seq data.</p>

<p>CHANGE: Improved memory consumption in metagenomic pipeline.</p>

<p>FIX: Several minor bugs.</p>

<h3>SPAdes 3.8.2, 10 July 2016</h3>

Expand Down
3 changes: 3 additions & 0 deletions assembler/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,9 @@ install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/../dipspades_manual.html"
install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/../truspades_manual.html"
DESTINATION share/spades
COMPONENT runtime)
install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/../rnaspades_manual.html"
DESTINATION share/spades
COMPONENT runtime)
install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/../LICENSE"
DESTINATION share/spades
COMPONENT runtime)
Expand Down
4 changes: 2 additions & 2 deletions assembler/src/tools/spades_holybox_compile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Script for compiling SPAdes using holy build box
# To compile spades run
# docker run -t -i -v <path with algorithmic-biology repository>:/gitrep --rm phusion/holy-build-box-64:latest bash /gitrep/algorithmic-biology/assembler/src/tools/spades_holybox_compile.sh
# docker run -t -i -v <path to spades_compile.sh>:/spades/ --rm phusion/holy-build-box-64:latest bash /spades/src/tools/spades_holybox_compile.sh

set -e
source /hbb_exe/activate
Expand All @@ -11,7 +11,7 @@ set -x

yum install bzip2-devel

cd /gitrep/algorithmic-biology/assembler
cd /spades
./spades_compile.sh -DSPADES_STATIC_BUILD=1

cd build_spades
Expand Down
14 changes: 5 additions & 9 deletions make-targz.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,11 @@ rm -rf $TARGET_DIR
SRC_DIR=$TARGET_DIR/src
mkdir -p $SRC_DIR

cp -r assembler/src/debruijn $SRC_DIR/
cp -r assembler/src/hammer $SRC_DIR/
cp -r assembler/src/dipspades $SRC_DIR/
cp -r assembler/src/ionhammer $SRC_DIR/
cp -r assembler/src/scaffold_correction $SRC_DIR/
cp -r assembler/src/modules $SRC_DIR/
cp -r assembler/src/utils $SRC_DIR/
cp -r assembler/src/projects $SRC_DIR/
cp -r assembler/src/include $SRC_DIR/
cp -r assembler/src/io $SRC_DIR/
cp -r assembler/src/cmake $SRC_DIR/
cp -r assembler/src/corrector $SRC_DIR/
cp -r assembler/src/spades_pipeline $SRC_DIR/
cp assembler/src/CMakeLists.txt $SRC_DIR/

Expand All @@ -34,6 +30,8 @@ cp assembler/README $TARGET_DIR/
cp assembler/VERSION $TARGET_DIR/
cp assembler/spades.py $TARGET_DIR/
cp assembler/rnaspades.py $TARGET_DIR/
cp assembler/metaspades.py $TARGET_DIR/
cp assembler/plasmidspades.py $TARGET_DIR/
cp assembler/dipspades.py $TARGET_DIR/
cp assembler/truspades.py $TARGET_DIR/
cp assembler/spades_compile.sh $TARGET_DIR/
Expand All @@ -49,8 +47,6 @@ cd $TARGET_DIR/
touch src/CMakeListsInternal.txt
rm -r configs/debruijn/datasets_archive
rm -r configs/debruijn/datasets
rm configs/debruijn/datasets*
rm configs/debruijn/deprecated*
find . -name ".?*" | xargs rm -r

cd ..
Expand Down

0 comments on commit 8ccafb3

Please sign in to comment.