diff --git a/src/flankBed/flankBed.cpp b/src/flankBed/flankBed.cpp
index de2707b71c1d50d3fa137de736f36a9bbb8d5509..9b6371f56e7c7ed7c6b208468ebcef224ef7d9f9 100644
--- a/src/flankBed/flankBed.cpp
+++ b/src/flankBed/flankBed.cpp
@@ -103,14 +103,15 @@ void BedFlank::AddFlank(BED &bed, int leftFlank, int rightFlank) {
     
     // make the left flank (if necessary)
     if (rightFlank > 0) {
-        if ( (static_cast<int>(right.end) + (rightFlank+1)) <= static_cast<int>(chromSize)) 
+        if ( (static_cast<int>(right.end) + static_cast<int>(rightFlank+1))
+             <= static_cast<int>(chromSize)) 
         {
             right.start    = right.end;
             right.end     += (rightFlank);
         }
         else {
             right.start    = right.end;
-            right.end     += chromSize;
+            right.end      = chromSize;
         }
         // report the right flank
         _bed->reportBedNewLine(right);
diff --git a/src/flankBed/flankBedMain.cpp b/src/flankBed/flankBedMain.cpp
index 6a15a04bb342ae5baed66a1ddb1929f2b71e3869..cb1f89cf101f276c9f7bb95b34a40d6366977b92 100644
--- a/src/flankBed/flankBedMain.cpp
+++ b/src/flankBed/flankBedMain.cpp
@@ -124,8 +124,8 @@ int flank_main(int argc, char* argv[]) {
       cerr << endl << "*****" << endl << "*****ERROR: Need both -l and -r. " << endl << "*****" << endl;
       showHelp = true;
     }
-    if (forceStrand && (!(haveLeft) || !(haveRight))) {
-      cerr << endl << "*****" << endl << "*****ERROR: Must supply -l and -r with -s. " << endl << "*****" << endl;
+    if (forceStrand && ((!(haveLeft) || !(haveRight)) && (!haveBoth))) {
+      cerr << endl << "*****" << endl << "*****ERROR: Must supply -l and -r or just -b with -s. " << endl << "*****" << endl;
       showHelp = true;
     }
 
diff --git a/src/slopBed/slopBedMain.cpp b/src/slopBed/slopBedMain.cpp
index d72567ceabb5e306e6e414da05747930d4315f70..83f1bfc7ac3010ac2a4bce9a52a2f1fbfaf1f176 100644
--- a/src/slopBed/slopBedMain.cpp
+++ b/src/slopBed/slopBedMain.cpp
@@ -124,11 +124,10 @@ int slop_main(int argc, char* argv[]) {
       cerr << endl << "*****" << endl << "*****ERROR: Need both -l and -r. " << endl << "*****" << endl;
       showHelp = true;
     }
-    if (forceStrand && (!(haveLeft) || !(haveRight))) {
-      cerr << endl << "*****" << endl << "*****ERROR: Must supply -l and -r with -s. " << endl << "*****" << endl;
+    if (forceStrand && ((!(haveLeft) || !(haveRight)) && (!haveBoth))) {
+      cerr << endl << "*****" << endl << "*****ERROR: Must supply -l and -r or just -b with -s. " << endl << "*****" << endl;
       showHelp = true;
     }
-
     if (!showHelp) {
         BedSlop *bc = new BedSlop(bedFile, genomeFile, forceStrand, leftSlop, rightSlop, fractional, printHeader);
         delete bc;
diff --git a/test/flank/a.bed b/test/flank/a.bed
new file mode 100644
index 0000000000000000000000000000000000000000..318e7de9da7666bd01d5757f02c1982a06be4c74
--- /dev/null
+++ b/test/flank/a.bed
@@ -0,0 +1,3 @@
+chr1	100	200	a1	1	+
+chr1	100	200	a2	2	-
+
diff --git a/test/flank/test-flank.sh b/test/flank/test-flank.sh
new file mode 100644
index 0000000000000000000000000000000000000000..c9c68551b8dd6f90dc75eaea07876e7bf45ac5c4
--- /dev/null
+++ b/test/flank/test-flank.sh
@@ -0,0 +1,149 @@
+BT=../../bin/bedtools
+
+check()
+{
+	if diff $1 $2; then
+    	echo ok
+		return 1
+	else
+    	echo fail
+		return 0
+	fi
+}
+
+# cat a.bed
+# chr1	100	200	a1	1	+
+# chr1	100	200	a2	2	-
+
+###########################################################
+# test matching flanks via -b
+###########################################################
+echo "    flank.t1...\c"
+echo \
+"chr1	95	100	a1	1	+
+chr1	200	205	a1	1	+
+chr1	95	100	a2	2	-
+chr1	200	205	a2	2	-" > exp
+$BT flank -i a.bed -b 5 -g tiny.genome > obs
+check obs exp
+rm obs exp
+
+###########################################################
+# test matching flanks via -l and -r
+###########################################################
+echo "    flank.t2...\c"
+echo \
+"chr1	95	100	a1	1	+
+chr1	200	205	a1	1	+
+chr1	95	100	a2	2	-
+chr1	200	205	a2	2	-" > exp
+$BT flank -i a.bed -l 5 -r 5 -g tiny.genome > obs
+check obs exp
+rm obs exp
+
+###########################################################
+# test just a -l flank (-r == 0)
+###########################################################
+echo "    flank.t3...\c"
+echo \
+"chr1	95	100	a1	1	+
+chr1	95	100	a2	2	-" > exp
+$BT flank -i a.bed -l 5 -r 0 -g tiny.genome > obs
+check obs exp
+rm obs exp
+
+###########################################################
+# test just a -r flank (-l == 0)
+###########################################################
+echo "    flank.t4...\c"
+echo \
+"chr1	200	205	a1	1	+
+chr1	200	205	a2	2	-" > exp
+$BT flank -i a.bed -l 0 -r 5 -g tiny.genome > obs
+check obs exp
+rm obs exp
+
+###########################################################
+# test just a -l flank (-r == 0) with -s
+###########################################################
+echo "    flank.t5...\c"
+echo \
+"chr1	95	100	a1	1	+
+chr1	200	205	a2	2	-" > exp
+$BT flank -i a.bed -l 5 -r 0 -s -g tiny.genome > obs
+check obs exp
+rm obs exp
+
+###########################################################
+# test just a -r flank (-l == 0) with -s
+###########################################################
+echo "    flank.t6...\c"
+echo \
+"chr1	200	205	a1	1	+
+chr1	95	100	a2	2	-" > exp
+$BT flank -i a.bed -l 0 -r 5 -s -g tiny.genome > obs
+check obs exp
+rm obs exp
+
+###########################################################
+# test -b with -s
+###########################################################
+echo "    flank.t7...\c"
+echo \
+"chr1	95	100	a1	1	+
+chr1	200	205	a1	1	+
+chr1	95	100	a2	2	-
+chr1	200	205	a2	2	-" > exp
+$BT flank -i a.bed -b 5 -s -g tiny.genome > obs
+check obs exp
+rm obs exp
+
+###########################################################
+# test going beyond the start of the chrom
+###########################################################
+echo "    flank.t8...\c"
+echo \
+"chr1	0	100	a1	1	+
+chr1	200	400	a1	1	+
+chr1	0	100	a2	2	-
+chr1	200	400	a2	2	-" > exp
+$BT flank -i a.bed -b 200 -g tiny.genome > obs
+check obs exp
+rm obs exp
+
+###########################################################
+# test going beyond the end of the chrom
+###########################################################
+echo "    flank.t9...\c"
+echo \
+"chr1	200	1000	a1	1	+
+chr1	200	1000	a2	2	-" > exp
+$BT flank -i a.bed -l 0 -r 1000 -g tiny.genome > obs
+check obs exp
+rm obs exp
+
+###########################################################
+# test going beyond the start and end of the chrom
+###########################################################
+echo "    flank.t10...\c"
+echo \
+"chr1	0	100	a1	1	+
+chr1	200	1000	a1	1	+
+chr1	0	100	a2	2	-
+chr1	200	1000	a2	2	-" > exp
+$BT flank -i a.bed -b 2000 -g tiny.genome > obs
+check obs exp
+rm obs exp
+
+###########################################################
+# test going beyond the start and end of the chrom with -s
+###########################################################
+echo "    flank.t11...\c"
+echo \
+"chr1	0	100	a1	1	+
+chr1	200	1000	a1	1	+
+chr1	0	100	a2	2	-
+chr1	200	1000	a2	2	-" > exp
+$BT flank -i a.bed -b 2000 -s -g tiny.genome > obs
+check obs exp
+rm obs exp
\ No newline at end of file
diff --git a/test/flank/tiny.genome b/test/flank/tiny.genome
new file mode 100644
index 0000000000000000000000000000000000000000..0dd8b222927c0b6b0c0ca8bd85b2e420fd8ea121
--- /dev/null
+++ b/test/flank/tiny.genome
@@ -0,0 +1 @@
+chr1	1000
diff --git a/test/slop/a.bed b/test/slop/a.bed
new file mode 100644
index 0000000000000000000000000000000000000000..318e7de9da7666bd01d5757f02c1982a06be4c74
--- /dev/null
+++ b/test/slop/a.bed
@@ -0,0 +1,3 @@
+chr1	100	200	a1	1	+
+chr1	100	200	a2	2	-
+
diff --git a/test/slop/test-slop.sh b/test/slop/test-slop.sh
new file mode 100644
index 0000000000000000000000000000000000000000..51997f32a1329614d343e4579ab5c48af14e6c59
--- /dev/null
+++ b/test/slop/test-slop.sh
@@ -0,0 +1,137 @@
+BT=../../bin/bedtools
+
+check()
+{
+	if diff $1 $2; then
+    	echo ok
+		return 1
+	else
+    	echo fail
+		return 0
+	fi
+}
+
+# cat a.bed
+# chr1	100	200	a1	1	+
+# chr1	100	200	a2	2	-
+
+###########################################################
+# test matching flanks via -b
+###########################################################
+echo "    slop.t1...\c"
+echo \
+"chr1	95	205	a1	1	+
+chr1	95	205	a2	2	-" > exp
+$BT slop -i a.bed -b 5 -g tiny.genome > obs
+check obs exp
+rm obs exp
+
+###########################################################
+# test matching flanks via -l and -r
+###########################################################
+echo "    slop.t2...\c"
+echo \
+"chr1	95	205	a1	1	+
+chr1	95	205	a2	2	-" > exp > exp
+$BT slop -i a.bed -l 5 -r 5 -g tiny.genome > obs
+check obs exp
+rm obs exp
+
+###########################################################
+# test just a -l flank (-r == 0)
+###########################################################
+echo "    slop.t3...\c"
+echo \
+"chr1	95	200	a1	1	+
+chr1	95	200	a2	2	-" > exp
+$BT slop -i a.bed -l 5 -r 0 -g tiny.genome > obs
+check obs exp
+rm obs exp
+
+###########################################################
+# test just a -r flank (-l == 0)
+###########################################################
+echo "    slop.t4...\c"
+echo \
+"chr1	100	205	a1	1	+
+chr1	100	205	a2	2	-" > exp
+$BT slop -i a.bed -l 0 -r 5 -g tiny.genome > obs
+check obs exp
+rm obs exp
+
+###########################################################
+# test just a -l flank (-r == 0) with -s
+###########################################################
+echo "    slop.t5...\c"
+echo \
+"chr1	95	200	a1	1	+
+chr1	100	205	a2	2	-" > exp
+$BT slop -i a.bed -l 5 -r 0 -s -g tiny.genome > obs
+check obs exp
+rm obs exp
+
+###########################################################
+# test just a -r flank (-l == 0) with -s
+###########################################################
+echo "    slop.t6...\c"
+echo \
+"chr1	100	205	a1	1	+
+chr1	95	200	a2	2	-" > exp
+$BT slop -i a.bed -l 0 -r 5 -s -g tiny.genome > obs
+check obs exp
+rm obs exp
+
+###########################################################
+# test -b with -s
+###########################################################
+echo "    slop.t7...\c"
+echo \
+"chr1	95	205	a1	1	+
+chr1	95	205	a2	2	-" > exp
+$BT slop -i a.bed -b 5 -s -g tiny.genome > obs
+check obs exp
+rm obs exp
+
+###########################################################
+# test going beyond the start of the chrom
+###########################################################
+echo "    slop.t8...\c"
+echo \
+"chr1	0	400	a1	1	+
+chr1	0	400	a2	2	-" > exp
+$BT slop -i a.bed -b 200 -g tiny.genome > obs
+check obs exp
+rm obs exp
+
+###########################################################
+# test going beyond the end of the chrom
+###########################################################
+echo "    slop.t9...\c"
+echo \
+"chr1	100	1000	a1	1	+
+chr1	100	1000	a2	2	-" > exp
+$BT slop -i a.bed -l 0 -r 1000 -g tiny.genome > obs
+check obs exp
+rm obs exp
+
+###########################################################
+# test going beyond the start and end of the chrom
+###########################################################
+echo "    slop.t10...\c"
+echo \
+"chr1	0	1000	a1	1	+
+chr1	0	1000	a2	2	-" > exp
+$BT slop -i a.bed -b 2000 -g tiny.genome > obs
+check obs exp
+rm obs exp
+
+###########################################################
+# test going beyond the start and end of the chrom with -s
+###########################################################
+echo "    slop.t11...\c"
+echo \
+"chr1	0	1000	a1	1	+
+chr1	0	1000	a2	2	-" > exp
+$BT slop -i a.bed -b 2000 -s -g tiny.genome > obs
+check obs exp
+rm obs exp
\ No newline at end of file
diff --git a/test/slop/tiny.genome b/test/slop/tiny.genome
new file mode 100644
index 0000000000000000000000000000000000000000..0dd8b222927c0b6b0c0ca8bd85b2e420fd8ea121
--- /dev/null
+++ b/test/slop/tiny.genome
@@ -0,0 +1 @@
+chr1	1000
diff --git a/test/test.sh b/test/test.sh
index ae2f1eaa70ee4d8f5e1d339143b6b61201cf7f59..4be3c17f57a2ffc0dea61f614582334d29cb34c9 100644
--- a/test/test.sh
+++ b/test/test.sh
@@ -13,6 +13,16 @@ cd bamtobed
 sh test-bamtobed.sh
 cd ..
 
+echo " Testing bedtools coverage:"
+cd coverage
+sh test-coverage.sh
+cd ..
+
+echo " Testing bedtools flank:"
+cd flank
+sh test-flank.sh
+cd ..
+
 echo " Testing bedtools genomecov:"
 cd genomecov
 sh test-genomecov.sh
@@ -32,3 +42,8 @@ echo " Testing bedtools merge:"
 cd merge
 sh test-merge.sh
 cd ..
+
+echo " Testing bedtools slop:"
+cd slop
+sh test-slop.sh
+cd ..