Skip to content
Snippets Groups Projects
Commit f1ce5e41 authored by Brent Pedersen's avatar Brent Pedersen
Browse files

let groupby handle a header line (starting with "#") as do other

bedtools subcommands.
parent 1b4ecc01
No related branches found
No related tags found
No related merge requests found
...@@ -323,7 +323,7 @@ void GroupBy (const string &inFile, ...@@ -323,7 +323,7 @@ void GroupBy (const string &inFile,
TabFile *_tab = new TabFile(inFile); TabFile *_tab = new TabFile(inFile);
_tab->Open(); _tab->Open();
while ((tabLineStatus = _tab->GetNextTabLine(inFields, lineNum)) != TAB_INVALID) { while ((tabLineStatus = _tab->GetNextTabLine(inFields, lineNum)) != TAB_INVALID) {
if (tabLineStatus == TAB_VALID) { if ((tabLineStatus == TAB_VALID) || (tabLineStatus == TAB_HEADER)) {
if (first_line) { if (first_line) {
first_line = false; first_line = false;
......
...@@ -5,10 +5,24 @@ lines_d=$(../../bin/groupBy -g 1-2,3 -o collapse -c 4 -i ../map/values3.bed | wc ...@@ -5,10 +5,24 @@ lines_d=$(../../bin/groupBy -g 1-2,3 -o collapse -c 4 -i ../map/values3.bed | wc
check(){ check(){
if [ "$1" != "$2" ]; then if [ "$1" != "$2" ]; then
"fail groupby" echo "fail groupby" $1 $2
fi fi
} }
check $lines_a $lines_b check $lines_a $lines_b
check $lines_a $lines_c check $lines_a $lines_c
check $lines_a $lines_d check $lines_a $lines_d
H=$(head -n 1 values3.header.bed)
A=$(../../bin/bedtools groupby -i values3.header.bed -g 1,2,3 -c 4 -o concat -inheader | head -n 1)
if [ "$A" != $'chr1\t0\t10\ta1' ]; then
echo "fail groupby"
fi
B=$(../../bin/bedtools groupby -i values3.header.bed -g 1,2,3 -c 4 -o concat -header | head -n 1)
if [ "$B" != $'#chrom\tstart\tend\tconcat(A)' ]; then
echo "fail groupby"
fi
#chrom start end A B C
chr1 0 10 a1 10 +
chr1 10 20 a2 5 +
chr1 11 21 a3 5 +
chr1 20 30 a4 15 +
chr1 20 30 a5 15 +
chr1 20 30 a6 15 +
chr1 120 130 a7 1 +
chr3 0 10 a8 1 +
chr3 10 20 a9 2 +
chr3 20 30 a10 3 +
chr3 120 130 a11 4 +
chr3 120 130 a12 4 +
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