Skip to content

Commit

Permalink
Remove unused parameters to AssemblyGraph().
Browse files Browse the repository at this point in the history
  • Loading branch information
brianwalenz committed Nov 17, 2016
1 parent 6f03602 commit f71858d
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 9 deletions.
2 changes: 0 additions & 2 deletions src/bogart/AS_BAT_AssemblyGraph.C
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,6 @@ AssemblyGraph::buildReverseEdges(void) {

void
AssemblyGraph::buildGraph(const char *UNUSED(prefix),
double UNUSED(deviationGraph),
double UNUSED(deviationBubble),
double deviationRepeat,
TigVector &tigs) {
uint32 fiLimit = RI->numReads();
Expand Down
6 changes: 1 addition & 5 deletions src/bogart/AS_BAT_AssemblyGraph.H
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,9 @@ public:
class AssemblyGraph {
public:
AssemblyGraph(const char *prefix,
double deviationGraph,
double deviationBubble,
double deviationRepeat,
TigVector &tigs) {
buildGraph(prefix, deviationGraph, deviationBubble, deviationRepeat, tigs);
buildGraph(prefix, deviationRepeat, tigs);
}

~AssemblyGraph() {
Expand All @@ -115,8 +113,6 @@ public:
public:
void buildReverseEdges(void);
void buildGraph(const char *prefix,
double deviationGraph,
double deviationBubble,
double deviationRepeat,
TigVector &tigs);

Expand Down
2 changes: 0 additions & 2 deletions src/bogart/bogart.C
Original file line number Diff line number Diff line change
Expand Up @@ -411,8 +411,6 @@ main (int argc, char * argv []) {
contigs.reportErrorProfiles(prefix, "assemblyGraph");

AssemblyGraph *AG = new AssemblyGraph(prefix,
deviationGraph,
deviationBubble,
deviationRepeat,
contigs);

Expand Down

0 comments on commit f71858d

Please sign in to comment.