Gk-arrays
Efficient read indexing
|
00001 /****************************************************************************** 00002 * * 00003 * Copyright © 2010-2013 -- IRB/INSERM * 00004 * (Institut de Recherches en Biothérapie / * 00005 * Institut National de la Santé et de la Recherche * 00006 * Médicale) * 00007 * LIFL/INRIA * 00008 * (Laboratoire d'Informatique Fondamentale de * 00009 * Lille / Institut National de Recherche en * 00010 * Informatique et Automatique) * 00011 * LIRMM/CNRS * 00012 * (Laboratoire d'Informatique, de Robotique et de * 00013 * Microélectronique de Montpellier / * 00014 * Centre National de la Recherche Scientifique) * 00015 * LITIS * 00016 * (Laboratoire d'Informatique, du Traitement de * 00017 * l'Information et des Systèmes). * 00018 * * 00019 * * 00020 * Auteurs/Authors: Nicolas PHILIPPE <nicolas.philippe@lirmm.fr> * 00021 * Mikaël SALSON <mikael.salson@lifl.fr> * 00022 * Thierry LECROQ <thierry.lecroq@univ-rouen.fr> * 00023 * Martine LÉONARD <Martine.Leonard@univ-rouen.fr> * 00024 * Éric RIVALS <eric.rivals@lirmm.fr> * 00025 * * 00026 * Programmeurs * 00027 * /Progammers: Nicolas PHILIPPE <nicolas.philippe@lirmm.fr> * 00028 * Mikaël SALSON <mikael.salson@lifl.fr> * 00029 * with additional contribution for the packaging of: * 00030 * Alban MANCHERON <alban.mancheron@lirmm.fr> * 00031 * * 00032 * Contact: Gk-Arrays list <crac-gkarrays@lists.gforge.inria.fr> * 00033 * * 00034 * ------------------------------------------------------------------------- * 00035 * * 00036 * Ce fichier fait partie de la librairie Gk-arrays. * 00037 * * 00038 * La librairie Gk-arrays a pour objectif d'indexer de grands ensembles de * 00039 * lectures de séquences issues du séquençage haut-débit. * 00040 * * 00041 * Ce logiciel est régi par la licence CeCILL-C soumise au droit français et * 00042 * respectant les principes de diffusion des logiciels libres. Vous pouvez * 00043 * utiliser, modifier et/ou redistribuer ce programme sous les conditions de * 00044 * la licence CeCILL-C telle que diffusée par le CEA, le CNRS et l'INRIA sur * 00045 * le site "http://www.cecill.info". * 00046 * * 00047 * En contrepartie de l'accessibilité au code source et des droits de copie, * 00048 * de modification et de redistribution accordés par cette licence, il n'est * 00049 * offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons, * 00050 * seule une responsabilité restreinte pèse sur l'auteur du programme, le * 00051 * titulaire des droits patrimoniaux et les concédants successifs. * 00052 * * 00053 * À cet égard l'attention de l'utilisateur est attirée sur les risques * 00054 * associés au chargement, à l'utilisation, à la modification et/ou au * 00055 * développement et à la reproduction du logiciel par l'utilisateur étant * 00056 * donné sa spécificité de logiciel libre, qui peut le rendre complexe à * 00057 * manipuler et qui le réserve donc à des développeurs et des professionnels * 00058 * avertis possédant des connaissances informatiques approfondies. Les * 00059 * utilisateurs sont donc invités à charger et tester l'adéquation du * 00060 * logiciel à leurs besoins dans des conditions permettant d'assurer la * 00061 * sécurité de leurs systêmes et ou de leurs données et, plus généralement, * 00062 * à l'utiliser et l'exploiter dans les mêmes conditions de sécurité. * 00063 * * 00064 * Le fait que vous puissiez accéder à cet en-tête signifie que vous avez * 00065 * pris connaissance de la licence CeCILL-C, et que vous en avez accepté les * 00066 * termes. * 00067 * * 00068 * ------------------------------------------------------------------------- * 00069 * * 00070 * This File is part of the Gk-arrays library. * 00071 * * 00072 * The Gk-arrays library aims at indexing k-factors from a huge set of * 00073 * sequencing reads. * 00074 * * 00075 * This software is governed by the CeCILL-C license under French law and * 00076 * abiding by the rules of distribution of free software. You can use, * 00077 * modify and/ or redistribute the software under the terms of the CeCILL-C * 00078 * license as circulated by CEA, CNRS and INRIA at the following URL * 00079 * "http://www.cecill.info". * 00080 * * 00081 * As a counterpart to the access to the source code and rights to copy, * 00082 * modify and redistribute granted by the license, users are provided only * 00083 * with a limited warranty and the software's author, the holder of the * 00084 * economic rights, and the successive licensors have only limited * 00085 * liability. * 00086 * * 00087 * In this respect, the user's attention is drawn to the risks associated * 00088 * with loading, using, modifying and/or developing or reproducing the * 00089 * software by the user in light of its specific status of free software, * 00090 * that may mean that it is complicated to manipulate, and that also * 00091 * therefore means that it is reserved for developers and experienced * 00092 * professionals having in-depth computer knowledge. Users are therefore * 00093 * encouraged to load and test the software's suitability as regards their * 00094 * requirements in conditions enabling the security of their systems and/or * 00095 * data to be ensured and, more generally, to use and operate it in the same * 00096 * conditions as regards security. * 00097 * * 00098 * The fact that you are presently reading this means that you have had * 00099 * knowledge of the CeCILL-C license and that you accept its terms. * 00100 * * 00101 ******************************************************************************/ 00102 00103 #ifndef GKIFA_BUILDER_H 00104 #define GKIFA_BUILDER_H 00105 00106 #include "solArray.h" 00107 #include <gkArrays.h> 00108 00109 namespace gkarrays { 00110 00111 struct ifa_builder_thread { 00112 gkArrays *gk; 00113 SolArray *gkSA; 00114 SolArray *gkCFPS; 00115 SolArray *gkIFA; 00116 uint thread_id; /* ID of the thread (start at 0) */ 00117 uint nb_threads; /* Number of working threads */ 00118 }; 00119 00120 class GkIFABuilder { 00121 private: 00122 SolArray *gkIFA; 00123 00124 public : 00125 00126 GkIFABuilder() ; 00127 ~GkIFABuilder() ; 00128 00137 void build(gkArrays *gk, SolArray *gkSA, SolArray *gkCFPS, array_type t, 00138 uint nb_threads=1); 00139 00143 SolArray *getGkIFA(); 00144 00145 }; 00146 00150 void *thread_work_ifa(void *data); 00151 00152 } 00153 00154 #endif