yat/omic/VcfIterator.cc

Code
Comments
Other
Rev Date Author Line
3774 26 Oct 18 peter 1 // $Id$
3774 26 Oct 18 peter 2
3774 26 Oct 18 peter 3 /*
3774 26 Oct 18 peter 4   Copyright (C) 2018 Peter Johansson
3774 26 Oct 18 peter 5
3774 26 Oct 18 peter 6   This file is part of the yat library, http://dev.thep.lu.se/yat
3774 26 Oct 18 peter 7
3774 26 Oct 18 peter 8   The yat library is free software; you can redistribute it and/or
3774 26 Oct 18 peter 9   modify it under the terms of the GNU General Public License as
3774 26 Oct 18 peter 10   published by the Free Software Foundation; either version 3 of the
3774 26 Oct 18 peter 11   License, or (at your option) any later version.
3774 26 Oct 18 peter 12
3774 26 Oct 18 peter 13   The yat library is distributed in the hope that it will be useful,
3774 26 Oct 18 peter 14   but WITHOUT ANY WARRANTY; without even the implied warranty of
3774 26 Oct 18 peter 15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
3774 26 Oct 18 peter 16   General Public License for more details.
3774 26 Oct 18 peter 17
3774 26 Oct 18 peter 18   You should have received a copy of the GNU General Public License
3774 26 Oct 18 peter 19   along with yat. If not, see <http://www.gnu.org/licenses/>.
3774 26 Oct 18 peter 20 */
3774 26 Oct 18 peter 21
3774 26 Oct 18 peter 22 #include <config.h>
3774 26 Oct 18 peter 23
3774 26 Oct 18 peter 24 #include "VcfIterator.h"
3774 26 Oct 18 peter 25
3774 26 Oct 18 peter 26 #include "VcfFile.h"
3774 26 Oct 18 peter 27
3774 26 Oct 18 peter 28 namespace theplu {
3774 26 Oct 18 peter 29 namespace yat {
3774 26 Oct 18 peter 30 namespace omic {
3774 26 Oct 18 peter 31
3774 26 Oct 18 peter 32   VcfIterator::VcfIterator(void)
3774 26 Oct 18 peter 33   {
3774 26 Oct 18 peter 34   }
3774 26 Oct 18 peter 35
3774 26 Oct 18 peter 36
3774 26 Oct 18 peter 37   VcfIterator::VcfIterator(VcfFile& file)
3774 26 Oct 18 peter 38     : std::istream_iterator<VCF>(file.fis_)
3774 26 Oct 18 peter 39   {
3774 26 Oct 18 peter 40   }
3774 26 Oct 18 peter 41
3774 26 Oct 18 peter 42 }}}