/* * Copyright 2018, Chanhee Park and Daehwan Kim * * This file is part of HISAT 2. * * HISAT 2 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, either version 3 of the License, or * (at your option) any later version. * * HISAT 2 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 should have received a copy of the GNU General Public License * along with HISAT 2. If not, see . */ #ifndef __HT2_HANDLE_H__ #define __HT2_HANDLE_H__ #if 1 #define EXPORT __attribute__((visibility("default"))) #else #define EXPORT #endif typedef TIndexOffU index_t; typedef uint16_t local_index_t; struct ht2_handle { ALTDB* altdb; ALTDB* raltdb; RepeatDB* repeatdb; HGFM* gfm; RFM *rgfm; string tmp_str; string ht2_idx_name; struct ht2_options options; }; #endif /* __HT2_HANDLE_H__ */