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 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
|
// ==========================================================================
// Yara - Yet Another Read Aligner
// ==========================================================================
// Copyright (c) 2011-2026, Enrico Siragusa, FU Berlin
// Copyright (c) 2013 NVIDIA Corporation
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// * Neither the name of Enrico Siragusa or the FU Berlin nor the names of
// its contributors may be used to endorse or promote products derived
// from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL ENRICO SIRAGUSA OR THE FU BERLIN BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
// OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
// DAMAGE.
//
// ==========================================================================
// Author: Enrico Siragusa <enrico.siragusa@fu-berlin.de>
// ==========================================================================
// This file contains the yara_indexer application.
// ==========================================================================
#define YARA_INDEXER
// ============================================================================
// Prerequisites
// ============================================================================
// ----------------------------------------------------------------------------
// SeqAn headers
// ----------------------------------------------------------------------------
#include <seqan/basic.h>
#include <seqan/sequence.h>
#include <seqan/index.h>
// ----------------------------------------------------------------------------
// App headers
// ----------------------------------------------------------------------------
#include "store_seqs.h"
#include "misc_timer.h"
#include "misc_tags.h"
#include "misc_types.h"
#include "bits_matches.h"
#include "misc_options.h"
#include "index_fm.h"
using namespace seqan2;
// ============================================================================
// Classes
// ============================================================================
// ----------------------------------------------------------------------------
// Class Options
// ----------------------------------------------------------------------------
struct Options
{
CharString contigsFile;
CharString contigsIndexFile;
uint64_t contigsSize;
uint64_t contigsMaxLength;
uint64_t contigsSum;
bool verbose;
Options() :
contigsSize(),
contigsMaxLength(),
contigsSum(),
verbose(false)
{}
};
// ----------------------------------------------------------------------------
// Class YaraIndexer
// ----------------------------------------------------------------------------
template <typename TSpec = void, typename TConfig = void>
struct YaraIndexer
{
typedef SeqStore<TSpec, YaraContigsConfig<> > TContigs;
Options const & options;
TContigs contigs;
SeqFileIn contigsFile;
Timer<double> timer;
YaraIndexer(Options const & options) :
options(options)
{}
};
// ============================================================================
// Functions
// ============================================================================
// ----------------------------------------------------------------------------
// Function setupArgumentParser()
// ----------------------------------------------------------------------------
void setupArgumentParser(ArgumentParser & parser, Options const & /* options */)
{
setAppName(parser, "yara_indexer");
setShortDescription(parser, "Yara Indexer");
setCategory(parser, "Read Mapping");
setDateAndVersion(parser);
setDescription(parser);
addUsageLine(parser, "[\\fIOPTIONS\\fP] <\\fIREFERENCE FILE\\fP>");
addArgument(parser, ArgParseArgument(ArgParseArgument::INPUT_FILE, "REFERENCE FILE"));
setValidValues(parser, 0, SeqFileIn::getFileExtensions());
setHelpText(parser, 0, "A reference genome file.");
addOption(parser, ArgParseOption("v", "verbose", "Displays verbose output."));
addSection(parser, "Output Options");
addOption(parser, ArgParseOption("o", "output-prefix", "Specify a filename prefix for the reference genome index. \
Default: use the filename prefix of the reference genome.", ArgParseOption::OUTPUT_PREFIX));
addOption(parser, ArgParseOption("td", "tmp-dir", "Specify a temporary directory where to construct the index. \
Default: use the output directory.", ArgParseOption::STRING));
}
// ----------------------------------------------------------------------------
// Function parseCommandLine()
// ----------------------------------------------------------------------------
ArgumentParser::ParseResult
parseCommandLine(Options & options, ArgumentParser & parser, int argc, char const ** argv)
{
ArgumentParser::ParseResult res = parse(parser, argc, argv);
if (res != ArgumentParser::PARSE_OK)
return res;
// Parse verbose output option.
getOptionValue(options.verbose, parser, "verbose");
// Parse contigs input file.
getArgumentValue(options.contigsFile, parser, 0);
// Parse contigs index prefix.
getOptionValue(options.contigsIndexFile, parser, "output-prefix");
if (!isSet(parser, "output-prefix"))
options.contigsIndexFile = trimExtension(options.contigsFile);
// Parse and set temp dir.
CharString tmpDir;
getOptionValue(tmpDir, parser, "tmp-dir");
if (!isSet(parser, "tmp-dir"))
{
tmpDir = getPath(options.contigsIndexFile);
if (empty(tmpDir))
getCwd(tmpDir);
}
setEnv("TMPDIR", tmpDir);
return ArgumentParser::PARSE_OK;
}
// ----------------------------------------------------------------------------
// Function loadContigs()
// ----------------------------------------------------------------------------
template <typename TSpec, typename TConfig>
void loadContigs(YaraIndexer<TSpec, TConfig> & me)
{
if (me.options.verbose)
std::cerr << "Loading reference:\t\t\t" << std::flush;
start(me.timer);
if (!open(me.contigsFile, toCString(me.options.contigsFile)))
throw RuntimeError("Error while opening the reference file.");
try
{
readRecords(me.contigs, me.contigsFile);
trimSeqNames(me.contigs);
}
catch (BadAlloc const & /* e */)
{
throw RuntimeError("Insufficient memory to load the reference.");
}
stop(me.timer);
if (me.options.verbose)
std::cerr << me.timer << std::endl;
}
// ----------------------------------------------------------------------------
// Function saveContigs()
// ----------------------------------------------------------------------------
template <typename TSpec, typename TConfig>
void saveContigs(YaraIndexer<TSpec, TConfig> & me)
{
if (me.options.verbose)
std::cerr << "Saving reference:\t\t\t" << std::flush;
start(me.timer);
if (!saveContigsLimits(me.options) || !save(me.contigs, toCString(me.options.contigsIndexFile)))
throw RuntimeError("Error while saving the reference.");
stop(me.timer);
if (me.options.verbose)
std::cerr << me.timer << std::endl;
}
// ----------------------------------------------------------------------------
// Function saveIndex()
// ----------------------------------------------------------------------------
template <typename TContigsSize, typename TContigsLen, typename TContigsSum, typename TSpec, typename TConfig>
void saveIndex(YaraIndexer<TSpec, TConfig> & me)
{
typedef YaraFMConfig<TContigsSize, TContigsLen, TContigsSum> TIndexConfig;
typedef FMIndex<void, TIndexConfig> TIndexSpec;
typedef Index<typename TIndexConfig::Text, TIndexSpec> TIndex;
if (me.options.verbose)
std::cerr << "Building reference index:\t\t" << std::flush;
start(me.timer);
// Randomly replace Ns with A, C, G, T.
randomizeNs(me.contigs);
// IndexFM is built on the reversed contigs.
reverse(me.contigs);
TIndex index;
// This assignment *copies* the contigs to the index as the types differ.
setValue(index.text, me.contigs.seqs);
// Clear the contigs - the index now owns its own copy.
clear(me.contigs);
shrinkToFit(me.contigs);
try
{
// Iterator instantiation triggers index construction.
typename Iterator<TIndex, TopDown<> >::Type it(index);
ignoreUnusedVariableWarning(it);
}
catch (BadAlloc const & /* e */)
{
throw RuntimeError("Insufficient memory to index the reference.");
}
catch (IOError const & /* e */)
// catch (PageFrameError const & /* e */)
{
throw RuntimeError("Insufficient disk space to index the reference. \
Specify a bigger temporary folder using the options --tmp-dir.");
}
stop(me.timer);
if (me.options.verbose)
std::cerr << me.timer << std::endl;
if (me.options.verbose)
std::cerr << "Saving reference index:\t\t\t" << std::flush;
start(me.timer);
if (!save(index, toCString(me.options.contigsIndexFile)))
throw RuntimeError("Error while saving the reference index file.");
stop(me.timer);
if (me.options.verbose)
std::cerr << me.timer << std::endl;
}
template <typename TContigsSize, typename TContigsLen, typename TSpec, typename TConfig>
void saveIndex(YaraIndexer<TSpec, TConfig> & me)
{
if (me.options.contigsSum <= std::numeric_limits<uint32_t>::max())
{
saveIndex<TContigsSize, TContigsLen, uint32_t>(me);
}
else
{
saveIndex<TContigsSize, TContigsLen, uint64_t>(me);
}
}
template <typename TContigsSize, typename TSpec, typename TConfig>
void saveIndex(YaraIndexer<TSpec, TConfig> & me)
{
if (me.options.contigsMaxLength <= std::numeric_limits<uint32_t>::max())
{
saveIndex<TContigsSize, uint32_t>(me);
}
else
{
#ifdef YARA_LARGE_CONTIGS
saveIndex<TContigsSize, uint64_t>(me);
#else
throw RuntimeError("Maximum contig length exceeded. Recompile with -DYARA_LARGE_CONTIGS=ON.");
#endif
}
}
template <typename TSpec, typename TConfig>
void saveIndex(YaraIndexer<TSpec, TConfig> & me)
{
if (me.options.contigsSize <= std::numeric_limits<uint8_t>::max())
{
saveIndex<uint8_t>(me);
}
else if (me.options.contigsSize <= std::numeric_limits<uint16_t>::max())
{
saveIndex<uint16_t>(me);
}
else
{
#ifdef YARA_LARGE_CONTIGS
saveIndex<uint32_t>(me);
#else
throw RuntimeError("Maximum number of contigs exceeded. Recompile with -DYARA_LARGE_CONTIGS=ON.");
#endif
}
}
// ----------------------------------------------------------------------------
// Function runYaraIndexer()
// ----------------------------------------------------------------------------
void runYaraIndexer(Options & options)
{
YaraIndexer<> indexer(options);
loadContigs(indexer);
setContigsLimits(options, indexer.contigs.seqs);
saveContigs(indexer);
saveIndex(indexer);
}
// ----------------------------------------------------------------------------
// Function main()
// ----------------------------------------------------------------------------
int main(int argc, char const ** argv)
{
ArgumentParser parser;
Options options;
setupArgumentParser(parser, options);
ArgumentParser::ParseResult res = parseCommandLine(options, parser, argc, argv);
if (res != ArgumentParser::PARSE_OK)
return res == ArgumentParser::PARSE_ERROR;
try
{
runYaraIndexer(options);
}
catch (Exception const & e)
{
std::cerr << getAppName(parser) << ": " << e.what() << std::endl;
return 1;
}
return 0;
}
|