X-Git-Url: https://git.donarmstrong.com/?p=rsem.git;a=blobdiff_plain;f=wiggle.h;h=f94a0be39d573cd529474ad56748f4a089cf6154;hp=1f3759230651b0ca16921495ca2ed29384fb4486;hb=b64d62d49f9b0446f10f87a2aadcde2f36854ab6;hpb=5fd66ada6c610981dcecd50e5e41436e0458b110 diff --git a/wiggle.h b/wiggle.h index 1f37592..f94a0be 100644 --- a/wiggle.h +++ b/wiggle.h @@ -1,11 +1,16 @@ +#ifndef WIGGLE_H_ +#define WIGGLE_H_ + #include #include #include #include +extern bool no_fractional_weight; // if no_frac_weight == true, each alignment counts as weight 1 + struct Wiggle { std::string name; - std::vector read_depth; + std::vector read_depth; size_t length; }; @@ -40,3 +45,5 @@ private: void build_wiggles(const std::string& bam_filename, WiggleProcessor& processor); + +#endif