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 172 173 174 175 176 177 178 179 180 181 182
|
#ifndef ASSEMBLY_LOADALGORITHM_H
#define ASSEMBLY_LOADALGORITHM_H 1
#include "DataLayer/FastaReader.h"
namespace AssemblyAlgorithms {
/** Load k-mer with coverage data.
* @return the number of k-mer loaded
*/
template <typename Graph>
size_t loadKmer(Graph& g, FastaReader& in)
{
typedef typename graph_traits<Graph>::vertex_descriptor V;
assert(opt::rank == -1);
size_t count = 0;
for (FastaRecord rec; in >> rec;) {
assert(rec.seq.size() == V::length());
std::istringstream iss(rec.id);
float coverage = 1;
iss >> coverage;
assert(iss);
assert(iss.eof());
g.add(V(rec.seq), std::max(1, (int)ceilf(coverage)));
if (++count % 1000000 == 0) {
logger(1) << "Read " << count << " k-mer. ";
g.printLoad();
}
g.pumpNetwork();
}
assert(in.eof());
return count;
}
template <typename Graph>
bool loadSequence(Graph* seqCollection, Sequence& seq)
{
typedef typename graph_traits<Graph>::vertex_descriptor V;
size_t len = seq.length();
if (isalnum(seq[0])) {
if (opt::colourSpace)
assert(isdigit(seq[0]));
else
assert(isalpha(seq[0]));
}
bool good = seq.find_first_not_of("ACGT0123") == std::string::npos;
bool discarded = true;
for (unsigned i = 0; i < len - V::length() + 1; ++i) {
Sequence kmer(seq, i, V::length());
if (good || kmer.find_first_not_of("acgtACGT0123")
== std::string::npos) {
if (good || kmer.find_first_of("acgt") == std::string::npos)
seqCollection->add(V(kmer));
else {
transform(kmer.begin(), kmer.end(), kmer.begin(),
::toupper);
seqCollection->add(V(kmer), 0);
}
discarded = false;
}
}
return discarded;
}
/** Load sequence data into the collection. */
template <typename Graph>
void loadSequences(Graph* seqCollection, std::string inFile)
{
typedef typename graph_traits<Graph>::vertex_descriptor V;
Timer timer("LoadSequences " + inFile);
logger(0) << "Reading `" << inFile << "'...\n";
if (inFile.find(".kmer") != std::string::npos) {
if (opt::rank <= 0)
seqCollection->setColourSpace(false);
seqCollection->load(inFile.c_str());
return;
}
size_t count = 0, count_good = 0,
count_small = 0, count_nonACGT = 0,
count_reversed = 0;
int fastaFlags = opt::maskCov ? FastaReader::NO_FOLD_CASE :
FastaReader::FOLD_CASE;
FastaReader reader(inFile.c_str(), fastaFlags);
if (endsWith(inFile, ".jf") || endsWith(inFile, ".jfq")) {
// Load k-mer with coverage data.
count = loadKmer(*seqCollection, reader);
count_good = count;
} else
for (FastaRecord rec; reader >> rec;) {
Sequence seq = rec.seq;
size_t len = seq.length();
if (V::length() > len) {
count_small++;
continue;
}
if (opt::rank <= 0
&& count == 0 && seqCollection->empty()) {
// Detect colour-space reads.
bool colourSpace
= seq.find_first_of("0123") != std::string::npos;
seqCollection->setColourSpace(colourSpace);
if (colourSpace)
std::cout << "Colour-space assembly\n";
}
if (opt::ss && rec.id.size() > 2
&& rec.id.substr(rec.id.size()-2) == "/1") {
seq = reverseComplement(seq);
count_reversed++;
}
bool discarded = loadSequence(seqCollection, seq);
if (discarded)
count_nonACGT++;
else
count_good++;
if (++count % 100000 == 0) {
logger(1) << "Read " << count << " reads. ";
seqCollection->printLoad();
}
seqCollection->pumpNetwork();
}
assert(reader.eof());
logger(1) << "Read " << count << " reads. ";
seqCollection->printLoad();
if (count_reversed > 0)
std::cerr << "`" << inFile << "': "
"reversed " << count_reversed << " reads\n";
if (count_small > 0)
std::cerr << "`" << inFile << "': "
"discarded " << count_small << " reads "
"shorter than " << V::length() << " bases\n";
if (reader.unchaste() > 0)
std::cerr << "`" << inFile << "': "
"discarded " << reader.unchaste() << " unchaste reads\n";
if (count_nonACGT > 0)
std::cerr << "`" << inFile << "': "
"discarded " << count_nonACGT << " reads "
"containing non-ACGT characters\n";
tempCounter[0] += count_reversed;
tempCounter[1] += (count_small + reader.unchaste() + count_nonACGT);
if (count_good == 0)
std::cerr << "warning: `" << inFile << "': "
"contains no usable sequence\n";
if (opt::rank <= 0 && count == 0 && seqCollection->empty()) {
/* The master process did not load any data, which means that
* it hasn't told the slave processes whether this assembly is
* in colour-space. Rather than fail right now, assume that
* the assembly is not colour space. If the assumption is
* incorrect, the assembly will fail pretty quickly as soon as
* one of the slave processes sees a colour-space read.
*/
assert(!opt::colourSpace);
seqCollection->setColourSpace(false);
}
if (!opt::db.empty()) {
addToDb("reversedReads", tempCounter[0]);
addToDb("totalDiscardedReads", tempCounter[1]);
}
tempCounter.assign(2,0);
}
} // namespace AssemblyAlgorithms
#endif
|