test/vcf_compare.cc

Code
Comments
Other
Rev Date Author Line
3759 17 Oct 18 peter 1 // $Id$
3759 17 Oct 18 peter 2
3759 17 Oct 18 peter 3 /*
3759 17 Oct 18 peter 4   Copyright (C) 2018 Peter Johansson
3759 17 Oct 18 peter 5
3759 17 Oct 18 peter 6   The yat library is free software; you can redistribute it and/or
3759 17 Oct 18 peter 7   modify it under the terms of the GNU General Public License as
3759 17 Oct 18 peter 8   published by the Free Software Foundation; either version 3 of the
3759 17 Oct 18 peter 9   License, or (at your option) any later version.
3759 17 Oct 18 peter 10
3759 17 Oct 18 peter 11   The yat library is distributed in the hope that it will be useful,
3759 17 Oct 18 peter 12   but WITHOUT ANY WARRANTY; without even the implied warranty of
3759 17 Oct 18 peter 13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
3759 17 Oct 18 peter 14   General Public License for more details.
3759 17 Oct 18 peter 15
3759 17 Oct 18 peter 16   You should have received a copy of the GNU General Public License
3759 17 Oct 18 peter 17   along with yat. If not, see <http://www.gnu.org/licenses/>.
3759 17 Oct 18 peter 18 */
3759 17 Oct 18 peter 19
3759 17 Oct 18 peter 20 #include <config.h>
3759 17 Oct 18 peter 21
3759 17 Oct 18 peter 22 #include "Suite.h"
3759 17 Oct 18 peter 23
3759 17 Oct 18 peter 24 #include "yat/omic/VCF.h"
3759 17 Oct 18 peter 25 #include "yat/omic/VcfCompare.h"
3759 17 Oct 18 peter 26
3759 17 Oct 18 peter 27 using namespace theplu::yat;
3759 17 Oct 18 peter 28
3759 17 Oct 18 peter 29 int main(int argc, char* argv[])
3759 17 Oct 18 peter 30 {
3759 17 Oct 18 peter 31   test::Suite suite(argc, argv);
3759 17 Oct 18 peter 32
3759 17 Oct 18 peter 33   // don't run this
3759 17 Oct 18 peter 34   if (false) {
3759 17 Oct 18 peter 35     omic::VcfCompare compare;
3759 17 Oct 18 peter 36     omic::VCF vcf;
3759 17 Oct 18 peter 37     compare(vcf, vcf);
3759 17 Oct 18 peter 38   }
3759 17 Oct 18 peter 39   return suite.return_value();
3759 17 Oct 18 peter 40 }