1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
|
/*
Ray -- Parallel genome assemblies for parallel DNA sequencing
Copyright (C) 2010, 2011, 2012, 2013 Sébastien Boisvert
http://DeNovoAssembler.SourceForge.Net/
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, version 3 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You have received a copy of the GNU General Public License
along with this program (gpl-3.0.txt).
see <http://www.gnu.org/licenses/>
*/
#ifndef _SeedWorker
#define _SeedWorker
#include <code/SeedingData/GraphPath.h>
#include <code/Mock/Parameters.h>
#include <RayPlatform/memory/RingAllocator.h>
#include <RayPlatform/communication/VirtualCommunicator.h>
#include <RayPlatform/scheduling/Worker.h>
#include <stdint.h>
#include <vector>
using namespace std;
/*
* Given a Kmer, SeedWorker determines if it spawns a seed.
* If yes, it computes the seed.
*
* \author Sébastien Boisvert
*/
class SeedWorker : public Worker {
MessageTag RAY_MPI_TAG_GET_VERTEX_EDGES_COMPACT;
MessageTag RAY_MPI_TAG_REQUEST_VERTEX_COVERAGE;
int m_mainVertexCoverage;
bool m_hasDeadEnd;
bool m_debugSeeds;
bool m_elongationMode;
map<Kmer,int> m_cache;
WorkerHandle m_workerIdentifier;
bool m_finished;
Kmer m_SEEDING_currentChildVertex;
bool m_SEEDING_InedgesReceived;
Kmer m_SEEDING_currentParentVertex;
bool m_SEEDING_ingoingEdgesDone;
int m_SEEDING_numberOfOutgoingEdgesWithSeedCoverage;
Kmer m_SEEDING_currentVertex;
int m_SEEDING_numberOfIngoingEdges;
bool m_SEEDING_vertexCoverageRequested;
bool m_SEEDING_edgesReceived;
bool m_SEEDING_testInitiated;
int m_SEEDING_ingoingEdgeIndex;
int m_SEEDING_outgoingEdgeIndex;
vector<Kmer> m_SEEDING_receivedIngoingEdges;
vector<int> m_ingoingCoverages;
vector<int> m_outgoingCoverages;
Parameters*m_parameters;
bool m_SEEDING_vertexCoverageReceived;
vector<Kmer> m_SEEDING_receivedOutgoingEdges;
int m_SEEDING_numberOfOutgoingEdges;
int m_SEEDING_numberOfIngoingEdgesWithSeedCoverage;
bool m_SEEDING_outgoingEdgesDone;
bool m_SEEDING_InedgesRequested;
bool m_outgoingEdgesReceived;
bool m_SEEDING_edgesRequested;
bool m_ingoingEdgesReceived;
int m_wordSize;
GraphPath m_SEEDING_seed;
bool m_SEEDING_firstVertexParentTestDone;
/*
* Store visited vertices.
*/
set<Kmer> m_SEEDING_vertices;
Kmer m_SEEDING_first;
bool m_SEEDING_firstVertexTestDone;
int m_SEEDING_numberOfSeedCoverageCandidates;
int m_rank;
int m_size;
RingAllocator*m_outboxAllocator;
int m_SEEDING_receivedVertexCoverage;
bool m_SEEDING_1_1_test_result;
int getRank();
int getSize();
bool m_SEEDING_1_1_test_done;
VirtualCommunicator*m_virtualCommunicator;
/*
* Additional quality control tests.
*/
bool m_checkedHead;
bool m_checkedTail;
bool m_endChecksModeStarted;
bool m_endChecksMode;
bool m_vertexFetcherStarted;
vector<Kmer> m_vertexFetcherParents;
vector<Kmer> m_vertexFetcherChildren;
CoverageDepth m_vertexFetcherCoverage;
bool m_vertexFetcherReceivedData;
bool m_vertexFetcherRequestedData;
bool m_headIsDeadEnd;
bool m_tailIsDeadEnd;
// topological algorithm for graphs
vector<Kmer> m_verticesBefore;
vector<Kmer> m_verticesAfter;
void performChecksOnPathEnds();
bool fetchVertexData(Kmer*kmer);
bool getPathBefore(Kmer*kmer,int depth);
bool getPathAfter(Kmer*kmer,int depth);
public:
void constructor(Kmer*vertex,Parameters*parameters,RingAllocator*outboxAllocator,
VirtualCommunicator*vc,WorkerHandle workerId,
MessageTag RAY_MPI_TAG_GET_VERTEX_EDGES_COMPACT,
MessageTag RAY_MPI_TAG_REQUEST_VERTEX_COVERAGE
);
GraphPath*getSeed();
void do_1_1_test();
/** work a little bit
* the class Worker provides no implementation for that
*/
void work();
/** is the worker done doing its things */
bool isDone();
/** get the worker number */
WorkerHandle getWorkerIdentifier();
bool isHeadADeadEnd();
bool isTailADeadEnd();
void enableDebugMode();
bool isBubbleWeakComponent();
};
#endif
|