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

Commit

Permalink
Merge 785423a into fa7ea22
Browse files Browse the repository at this point in the history
  • Loading branch information
jmthibault79 committed Nov 25, 2014
2 parents fa7ea22 + 785423a commit 84141b8
Show file tree
Hide file tree
Showing 48 changed files with 112 additions and 76 deletions.
1 change: 1 addition & 0 deletions gamgee/missing.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

#include "sam/sam_tag.h"
#include "utils/utils.h"

#include "htslib/vcf.h"

#include <vector>
Expand Down
5 changes: 3 additions & 2 deletions gamgee/sam/base_quals.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include "base_quals.h"
#include "utils/hts_memory.h"
#include "utils/utils.h"

#include "../utils/hts_memory.h"
#include "../utils/utils.h"

#include <string>
#include <stdexcept>
Expand Down
5 changes: 3 additions & 2 deletions gamgee/sam/cigar.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include "cigar.h"
#include "utils/hts_memory.h"
#include "utils/utils.h"

#include "../utils/hts_memory.h"
#include "../utils/utils.h"

#include <string>
#include <sstream>
Expand Down
3 changes: 2 additions & 1 deletion gamgee/sam/indexed_sam_iterator.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include "indexed_sam_iterator.h"
#include "sam.h"
#include "utils/hts_memory.h"

#include "../utils/hts_memory.h"

using namespace std;

Expand Down
2 changes: 1 addition & 1 deletion gamgee/sam/indexed_sam_iterator.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include "sam.h"

#include "utils/hts_memory.h"
#include "../utils/hts_memory.h"

#include "htslib/sam.h"

Expand Down
5 changes: 3 additions & 2 deletions gamgee/sam/indexed_sam_reader.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
#define gamgee__indexed_sam_reader__guard

#include "indexed_sam_iterator.h"
#include "utils/hts_memory.h"
#include "exceptions.h"

#include "../exceptions.h"
#include "../utils/hts_memory.h"

#include "htslib/sam.h"

Expand Down
5 changes: 3 additions & 2 deletions gamgee/sam/read_bases.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include "read_bases.h"
#include "utils/hts_memory.h"
#include "utils/utils.h"

#include "../utils/hts_memory.h"
#include "../utils/utils.h"

#include <string>
#include <sstream>
Expand Down
6 changes: 4 additions & 2 deletions gamgee/sam/sam.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
#include "sam.h"
#include "cigar.h"
#include "utils/hts_memory.h"

#include "htslib/sam.h"
#include "missing.h"

#include "../missing.h"
#include "../utils/hts_memory.h"

#include <iostream>
#include <string>
Expand Down
3 changes: 2 additions & 1 deletion gamgee/sam/sam_builder.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include "sam_builder.h"
#include "cigar.h"
#include "utils/hts_memory.h"

#include "../utils/hts_memory.h"

#include <algorithm>
#include <sstream>
Expand Down
3 changes: 2 additions & 1 deletion gamgee/sam/sam_header.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "sam_header.h"
#include "utils/hts_memory.h"

#include "../utils/hts_memory.h"

using namespace std;

Expand Down
3 changes: 2 additions & 1 deletion gamgee/sam/sam_iterator.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include "sam_iterator.h"
#include "sam.h"
#include "utils/hts_memory.h"

#include "../utils/hts_memory.h"

using namespace std;

Expand Down
3 changes: 2 additions & 1 deletion gamgee/sam/sam_pair_iterator.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include "sam_pair_iterator.h"
#include "sam.h"
#include "utils/hts_memory.h"

#include "../utils/hts_memory.h"

#include "htslib/sam.h"

Expand Down
5 changes: 3 additions & 2 deletions gamgee/sam/sam_reader.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@

#include "sam_iterator.h"
#include "sam_pair_iterator.h"
#include "utils/hts_memory.h"
#include "exceptions.h"

#include "../exceptions.h"
#include "../utils/hts_memory.h"

#include "htslib/sam.h"

Expand Down
2 changes: 1 addition & 1 deletion gamgee/sam/sam_writer.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "sam_writer.h"

#include "utils/hts_memory.h"
#include "../utils/hts_memory.h"

namespace gamgee {

Expand Down
2 changes: 1 addition & 1 deletion gamgee/sam/sam_writer.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include "sam.h"
#include "sam_header.h"

#include "utils/hts_memory.h"
#include "../utils/hts_memory.h"

#include "htslib/sam.h"

Expand Down
1 change: 1 addition & 0 deletions gamgee/utils/genotype_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include "hts_memory.h"
#include "utils.h"
#include "variant_field_type.h"

#include "../missing.h"

#include "htslib/vcf.h"
Expand Down
8 changes: 4 additions & 4 deletions gamgee/utils/merged_vcf_lut.h
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#ifndef __gamgee_merged_vcf_lut__
#define __gamgee_merged_vcf_lut__

#include<assert.h>
#include <assert.h>
#include <vector>

#include "htslib/vcf.h"
#include <vector>
#include "../variant/variant_header.h"
#include "../missing.h"

#include "../missing.h"
#include "../variant/variant_header.h"

//forward declaration for friend function of MergedVCFLUTBase
template<bool inputs_2_merged_LUT_is_input_ordered, bool merged_2_inputs_LUT_is_input_ordered>
Expand Down
3 changes: 2 additions & 1 deletion gamgee/utils/variant_utils.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
#include "variant_utils.h"

#include "../exceptions.h"
#include "hts_memory.h"

#include "../exceptions.h"

#include "htslib/vcf.h"

#include <algorithm>
Expand Down
12 changes: 6 additions & 6 deletions gamgee/variant/genotype.h
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#ifndef gamgee__genotype__guard
#define gamgee__genotype__guard

#include "utils/variant_utils.h"

#include "utils/hts_memory.h"
#include "utils/utils.h"
#include "utils/variant_field_type.h"
#include "utils/genotype_utils.h"
#include "variant_builder_multi_sample_vector.h"

#include "../utils/genotype_utils.h"
#include "../utils/hts_memory.h"
#include "../utils/utils.h"
#include "../utils/variant_field_type.h"
#include "../utils/variant_utils.h"

#include <memory>
#include <utility>
#include <stdexcept>
Expand Down
2 changes: 1 addition & 1 deletion gamgee/variant/indexed_variant_iterator.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include "variant_iterator.h"

#include "utils/hts_memory.h"
#include "../utils/hts_memory.h"

#include "htslib/vcf.h"

Expand Down
5 changes: 3 additions & 2 deletions gamgee/variant/indexed_variant_reader.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
#define gamgee__indexed_variant_reader__guard

#include "indexed_variant_iterator.h"
#include "utils/hts_memory.h"
#include "exceptions.h"

#include "../exceptions.h"
#include "../utils/hts_memory.h"

#include "htslib/vcf.h"

Expand Down
5 changes: 3 additions & 2 deletions gamgee/variant/individual_field.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
#include <iostream>

#include "individual_field_iterator.h"
#include "utils/hts_memory.h"
#include "utils/utils.h"

#include "../utils/hts_memory.h"
#include "../utils/utils.h"

#include "htslib/vcf.h"

Expand Down
2 changes: 1 addition & 1 deletion gamgee/variant/individual_field_iterator.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef gamgee__individual_field_iterator__guard
#define gamgee__individual_field_iterator__guard

#include "utils/utils.h"
#include "../utils/utils.h"

#include "htslib/vcf.h"

Expand Down
9 changes: 5 additions & 4 deletions gamgee/variant/individual_field_value.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
#define gamgee__individual_field_value__guard

#include "individual_field_value_iterator.h"
#include "utils/hts_memory.h"
#include "utils/utils.h"
#include "utils/variant_field_type.h"
#include "missing.h"

#include "../missing.h"
#include "../utils/hts_memory.h"
#include "../utils/utils.h"
#include "../utils/variant_field_type.h"

#include "htslib/vcf.h"

Expand Down
2 changes: 1 addition & 1 deletion gamgee/variant/individual_field_value_iterator.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef gamgee__individual_field_value_iterator__guard
#define gamgee__individual_field_value_iterator__guard

#include "utils/variant_field_type.h"
#include "../utils/variant_field_type.h"

#include "htslib/vcf.h"

Expand Down
7 changes: 4 additions & 3 deletions gamgee/variant/multiple_variant_reader.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
#include "htslib/vcf.h"

#include "variant_header.h"
#include "utils/hts_memory.h"
#include "utils/variant_utils.h"
#include "exceptions.h"
#include "variant_header_merger.h"

#include "../exceptions.h"
#include "../utils/hts_memory.h"
#include "../utils/variant_utils.h"

namespace gamgee {

/**
Expand Down
3 changes: 2 additions & 1 deletion gamgee/variant/shared_field.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
#define gamgee__shared_field__guard

#include "shared_field_iterator.h"
#include "utils/utils.h"

#include "../utils/utils.h"

#include "htslib/vcf.h"

Expand Down
2 changes: 1 addition & 1 deletion gamgee/variant/shared_field_iterator.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef gamgee__shared_field_iterator__guard
#define gamgee__shared_field_iterator__guard

#include "utils/variant_field_type.h"
#include "../utils/variant_field_type.h"

#include "htslib/vcf.h"

Expand Down
4 changes: 2 additions & 2 deletions gamgee/variant/synced_variant_reader.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
#include "htslib/vcf.h"
#include "htslib/synced_bcf_reader.h"

#include "exceptions.h"
#include "utils/hts_memory.h"
#include "../exceptions.h"
#include "../utils/hts_memory.h"

#include <string>
#include <iostream>
Expand Down
5 changes: 3 additions & 2 deletions gamgee/variant/variant.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
#include "individual_field.h"
#include "individual_field_value.h"
#include "shared_field.h"
#include "utils/hts_memory.h"
#include "utils/utils.h"

#include "../utils/hts_memory.h"
#include "../utils/utils.h"

#include "htslib/vcf.h"

Expand Down
3 changes: 2 additions & 1 deletion gamgee/variant/variant.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
#include "shared_field.h"
#include "variant_filters.h"
#include "genotype.h"
#include "utils/variant_utils.h"

#include "../utils/variant_utils.h"

#include "htslib/sam.h"
#include "boost/dynamic_bitset.hpp"
Expand Down
3 changes: 2 additions & 1 deletion gamgee/variant/variant_builder.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "variant_builder.h"
#include "missing.h"

#include "../missing.h"

#include <algorithm>
#include <stdexcept>
Expand Down
7 changes: 4 additions & 3 deletions gamgee/variant/variant_builder_individual_field.h
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
#ifndef gamgee__variant_builder_individual_field__guard
#define gamgee__variant_builder_individual_field__guard

#include "utils/hts_memory.h"
#include "utils/short_value_optimized_storage.h"
#include "htslib/kstring.h"
#include "htslib/vcf.h"
#include "missing.h"

#include "../missing.h"
#include "../utils/hts_memory.h"
#include "../utils/short_value_optimized_storage.h"

#include <string>
#include <vector>
Expand Down
1 change: 1 addition & 0 deletions gamgee/variant/variant_builder_individual_region.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

#include "variant.h"
#include "variant_builder_individual_field.h"

#include "htslib/kstring.h"
#include "htslib/vcf.h"

Expand Down
3 changes: 2 additions & 1 deletion gamgee/variant/variant_builder_shared_region.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "variant_builder_shared_region.h"
#include "missing.h"

#include "../missing.h"

#include <algorithm>
#include <stdexcept>
Expand Down
4 changes: 3 additions & 1 deletion gamgee/variant/variant_builder_shared_region.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
#ifndef gamgee__variant_builder_shared_region__guard
#define gamgee__variant_builder_shared_region__guard

#include "utils/hts_memory.h"
#include "../utils/hts_memory.h"

#include "htslib/kstring.h"
#include "htslib/vcf.h"

#include "variant.h"

#include <string>
Expand Down

0 comments on commit 84141b8

Please sign in to comment.