Skip to content

Commit 2cdc67f

Browse files
author
Harihara Subrahmaniam Muralidharan
committed
Updated DNACLUST Source Code
1 parent d5a91fa commit 2cdc67f

File tree

6 files changed

+389
-413
lines changed

6 files changed

+389
-413
lines changed

Experiments/Run_Benchmarks/Benchmark_CDHIT.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#SBATCH --time=5-00:00:00
88
#SBATCH --qos=large
99
#SBATCH --mem=36gb
10-
#SBATCH --cpus-per-task=8
10+
#SBATCH --cpus-per-task=16
1111
#SBATCH --nodelist=tern00
1212

1313
module load cdhit

dnaclust/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ fasta.o: src/fasta.cpp src/fasta.hpp
2727
$(CXX) -c $(CXXFLAGS) src/fasta.cpp
2828

2929
clean:
30+
rm -rf bin
3031
mkdir bin
3132
mv dnaclust bin/
3233
mv fastaselect bin/

dnaclust/src/Global_Variables.hpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ typedef intptr_t Index;
88
typedef int32_t CostType;
99
typedef std::vector<Index> IndexVector;
1010
typedef std::vector<char> BoolVector;
11+
enum BackPointer {LEFT, DOWN, DOWN_LEFT, ROOT};
12+
typedef multi_dim::Matrix<CostType> DpTable;
13+
typedef multi_dim::Matrix<BackPointer> BackPointerTable;
1114

1215
const CharType endOfStringChar = '\0';
1316
const CharType invalidChar = '^';

0 commit comments

Comments
 (0)