/* * nvbio * Copyright (c) 2011-2014, 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 the NVIDIA CORPORATION 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 NVIDIA CORPORATION 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. */ // sequence_test.cu // #include #include #include #include #include #include #include #include #include #include #include using namespace nvbio; namespace nvbio { int sequence_test(int argc, char* argv[]) { char* index_name = NULL; char* reads_name = NULL; for (int i = 0; i < argc; ++i) { if (strcmp( argv[i], "-map" ) == 0) index_name = argv[++i]; else if (strcmp( argv[i], "-reads" ) == 0) reads_name = argv[++i]; } log_info(stderr,"testing sequence-data... started\n"); try { if (index_name != NULL) { log_verbose(stderr, " loading sequence file %s\n", index_name ); // try to load the index in memory io::SequenceDataHost index; if (io::load_sequence_file( DNA, &index, index_name ) == false) { log_error(stderr," loading file %s failed\n", index_name); return 0; } log_verbose(stderr, " sequences : %u\n", index.size() ); log_verbose(stderr, " bps : %u\n", index.bps() ); log_verbose(stderr, " avg bps : %u (min: %u, max: %u)\n", index.avg_sequence_len(), index.min_sequence_len(), index.max_sequence_len() ); // try to load the index in mapped-memory io::SequenceDataMMAPServer server; if (server.load( DNA, index_name, "test", io::SequenceFlags( io::SEQUENCE_DATA | io::SEQUENCE_NAMES ) ) == false) { log_error(stderr," server mapping of file %s failed\n", index_name); return 0; } // scope the client so as to make sure it's destroyed before the server { // and map it into a client io::SequenceDataMMAP client; if (client.load( "test" ) == false) { log_error(stderr," client mapping of file %s failed\n", index_name); return 0; } log_verbose(stderr, " sequences : %u\n", client.size() ); log_verbose(stderr, " bps : %u\n", client.bps() ); log_verbose(stderr, " avg bps : %u (min: %u, max: %u)\n", client.avg_sequence_len(), client.min_sequence_len(), client.max_sequence_len() ); // check whether the stats match if (static_cast( index ) != static_cast( client )) { log_error(stderr," loaded and mapped versions of file %s do not match!\n", index_name); return 0; } } } if (reads_name != NULL) { SharedPointer read_file( io::open_sequence_file( reads_name ) ); if (read_file == NULL || read_file->is_ok() == false) { log_error(stderr," failed opening reads file %s\n", reads_name); return 0; } io::SequenceDataHost read_data; io::next( DNA_N, &read_data, read_file.get(), 10000 ); log_verbose(stderr, " sequences : %u\n", read_data.size() ); log_verbose(stderr, " bps : %u\n", read_data.bps() ); log_verbose(stderr, " avg bps : %u (min: %u, max: %u)\n", read_data.avg_sequence_len(), read_data.min_sequence_len(), read_data.max_sequence_len() ); } } catch (...) { log_error(stderr, "caught an unknown exception!\n"); return 0; } log_info(stderr,"testing sequence-data... done\n"); return 1; } } // namespace nvbio