Skip to content
This repository has been archived by the owner on Dec 16, 2022. It is now read-only.

Commit

Permalink
gamgee.h: one header to rule them all
Browse files Browse the repository at this point in the history
-One header that gets you all of the gamgee includes (minus the utils)

-For client code (eg., foghorn) where convenience is desired. Should
 not be used within gamgee itself, to cut down on compilation time and
 also to make it possible to still cherry-pick individual headers in client
 code when compile time is critical.

-Avoid having to type silly things like #include "is_missing.h"

-Should be continually updated as gamgee expands (pull requests should
 be rejected if they don't update gamgee.h as necessary)
  • Loading branch information
droazen committed Jul 9, 2014
1 parent f999766 commit bf27292
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions gamgee/gamgee.h
@@ -0,0 +1,19 @@
#ifndef __gamgee__gamgee__
#define __gamgee__gamgee__

#include "sam.h"
#include "sam_reader.h"
#include "sam_writer.h"
#include "sam_builder.h"

#include "variant.h"
#include "variant_reader.h"
#include "variant_writer.h"
#include "variant_header_builder.h"

#include "fastq.h"
#include "fastq_reader.h"

#include "is_missing.h"

#endif /* __gamgee__gamgee__ */

0 comments on commit bf27292

Please sign in to comment.