4a73fd653634412cc9ad0fc17aab320c3fb30be2 max Fri Aug 24 17:42:31 2018 -0700 making the wigToBigWig -clip option more tolerant to hg38 chroms with non-Hiram names, no redmine diff --git src/inc/bwgInternal.h src/inc/bwgInternal.h index d32a475..43cb81d 100644 --- src/inc/bwgInternal.h +++ src/inc/bwgInternal.h @@ -100,20 +100,20 @@ boolean clipDontDie, /* Skip items outside chromosome rather than aborting. */ struct hash *chromSizeHash, /* If non-NULL items checked to be inside chromosome. */ int maxSectionSize, /* Biggest size of a section. 100 - 100,000 is usual range. */ struct lm *lm); /* Memory pool to allocate from. */ /* Parse out ascii wig file - allocating memory in lm. */ int bwgAverageResolution(struct bwgSection *sectionList); /* Return the average resolution seen in sectionList. */ struct bbiSummary *bwgReduceSectionList(struct bwgSection *sectionList, struct bbiChromInfo *chromInfoArray, int reduction); /* Return summary of section list reduced by given amount. */ void bwgCreate(struct bwgSection *sectionList, struct hash *chromSizeHash, int blockSize, int itemsPerSlot, boolean doCompress, boolean keepAllChromosomes, - boolean fixedSummaries, char *fileName); + boolean fixedSummaries, boolean clipDontDie, char *fileName); /* Create a bigWig file out of a sorted sectionList. A lower level routine * than the one above. */ #endif /* BIGWIGFILE_H */