Skip to content
Snippets Groups Projects
Commit 3112d332 authored by Aaron's avatar Aaron
Browse files

Large update to groupBy.

	1. Assumes stdin when no -i is given.  Credit = Assaf Gordon
	2. New freqasc and freqdesc options.
	3. Better command line parsing.  Credit = Assaf Gordon.
parent b9ab28d0
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,8 @@ void BedGenomeCoverage::StartNewChrom(const string& newChrom) {
_currChromName = newChrom;
// get the current chrom size and allocate space
_currChromSize = _genome->getChromSize(newChrom);
_currChromSize = _genome->getChromSize(_currChromName);
if (_currChromSize >= 0)
_currChromCoverage.resize(_currChromSize);
else {
......
This diff is collapsed.
......@@ -43,7 +43,6 @@ void GenomeFile::loadGenomeFileIntoMap() {
// ignore a blank line
if (genomeFields.size() > 0) {
if (genomeFields[0].find("#") == string::npos) {
// we need at least 2 columns
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment