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 161 162 163 164 165 166 167 168 169 170 171
|
/*
* Ray -- Parallel genome assemblies for parallel DNA sequencing
* Copyright (C) 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/>
*/
#include "SeedMergingWorkflow.h"
#include "NanoMerger.h"
/*
* Methods to implement for the TaskCreator interface.
*
* The TaskCreator stack is used in the handler
* RAY_SLAVE_MODE_FILTER_SEEDS.
*/
/** initialize the whole thing */
void SeedMergingWorkflow::initializeMethod(){
m_seedIndex=0;
m_finished = 0 ;
}
/** finalize the whole thing */
void SeedMergingWorkflow::finalizeMethod(){
//cout << "[DEBUG] number of relations: " << m_searchResults.size() << endl;
m_core->getSwitchMan()->closeSlaveModeLocally(m_core->getOutbox(),m_core->getRank());
}
/** has an unassigned task left to compute */
bool SeedMergingWorkflow::hasUnassignedTask(){
/*
* This code is still buggy. I will do the 2.3.0 release
* without it.
*/
bool enableSeedMerging = m_parameters->hasOption("-merge-seeds");
//enableSeedMerging = true;
if(!enableSeedMerging)
return false;
return m_seedIndex < (int) m_seeds->size () ;
}
/** assign the next task to a worker and return this worker */
Worker*SeedMergingWorkflow::assignNextTask(){
#ifdef CONFIG_ASSERT
assert(m_seedIndex < (int)m_seeds->size());
#endif
if(m_seedIndex % m_period == 0)
cout<<"Rank "<<m_rank<< " assignNextTask "<<m_seedIndex<< "/" << m_seeds->size()<<endl;
NanoMerger*worker = new NanoMerger();
worker->initialize(m_seedIndex, &((*m_seeds)[m_seedIndex]), m_parameters,
m_virtualCommunicator,
m_core->getOutboxAllocator(),
RAY_MPI_TAG_GET_VERTEX_EDGES_COMPACT,
RAY_MPI_TAG_ASK_VERTEX_PATHS_SIZE,
RAY_MPI_TAG_ASK_VERTEX_PATH
);
m_seedIndex++;
return worker;
}
/** get the result of a worker */
void SeedMergingWorkflow::processWorkerResult(Worker*worker){
NanoMerger * theWorker = (NanoMerger*)worker;
vector<GraphSearchResult> & results = theWorker->getResults();
bool runTransaction = true;
if(results.size() == 2) {
// make sure this is not something like
//
// A001 --------B
// | /
// A100 --------
//
// with repeats, both ends of A could link to B...
set<PathHandle> observations;
for(int i = 0 ; i < (int) results.size() ; i++) {
GraphSearchResult & result = results[i];
observations.insert(result.getPathHandles()[0]);
observations.insert(result.getPathHandles()[1]);
}
if(observations.size() != 3)
runTransaction = false;
}
// we must send the results now !!!A
// we will send at most 2 messages...
// here we don't send messages right away because these units are
// not regular.
for(int i = 0 ; i < (int) results.size() ; i ++) {
if(!runTransaction)
break;
m_searchResults.push_back(results[i]);
}
if(m_finished % m_period == 0){
cout<<"Rank " << m_rank << " processWorkerResult "<<m_finished<<"/" <<m_seeds->size()<<endl;
}
m_finished++;
}
/** destroy a worker */
void SeedMergingWorkflow::destroyWorker(Worker*worker){
NanoMerger * concreteWorker = (NanoMerger*)worker;
delete concreteWorker;
worker = NULL; // this does nothing useful
concreteWorker = NULL;
}
void SeedMergingWorkflow::initialize(vector<GraphPath>*seeds, VirtualCommunicator*virtualCommunicator,
VirtualProcessor * virtualProcessor,ComputeCore * core, Parameters * parameters,
MessageTag RAY_MPI_TAG_GET_VERTEX_EDGES_COMPACT,
MessageTag RAY_MPI_TAG_ASK_VERTEX_PATHS_SIZE,
MessageTag RAY_MPI_TAG_ASK_VERTEX_PATH){
m_rank = core->getRank();
m_seeds = seeds;
m_virtualCommunicator = virtualCommunicator;
m_virtualProcessor = virtualProcessor;
m_core = core;
m_parameters = parameters;
this->RAY_MPI_TAG_GET_VERTEX_EDGES_COMPACT = RAY_MPI_TAG_GET_VERTEX_EDGES_COMPACT;
this->RAY_MPI_TAG_ASK_VERTEX_PATHS_SIZE = RAY_MPI_TAG_ASK_VERTEX_PATHS_SIZE;
this->RAY_MPI_TAG_ASK_VERTEX_PATH = RAY_MPI_TAG_ASK_VERTEX_PATH;
m_period = 100;
}
vector<GraphSearchResult> & SeedMergingWorkflow::getResults() {
return m_searchResults;
}
|