Skip to content
Snippets Groups Projects
Commit 87a7d5d8 authored by Holly Ruess's avatar Holly Ruess
Browse files

fix pool and pseuod

parent 19d2ae71
Branches
Tags
1 merge request!12Resolve "Fix Pool and Pseudoreps"
Pipeline #5404 failed with stages
in 5 hours, 5 minutes, and 50 seconds
......@@ -27,7 +27,7 @@ logger.setLevel(logging.INFO)
# strip_extensions strips from the right inward, so
# the expected right-most extensions should appear first (like .gz)
# Modified from J. Seth Strattan
STRIP_EXTENSIONS = ['.gz', '.tagAlign']
STRIP_EXTENSIONS = ['.gz', '.tagAlign', '.bedse', '.bedpe']
def get_args():
......
......@@ -46,7 +46,7 @@ def test_pool_and_psuedoreplicate_singleend_human():
design_file = os.path.join(test_output_path, 'ENCSR265ZXX_ppr.tsv')
assert os.path.exists(design_file)
design_df = pd.read_csv(design_file, sep="\t")
assert design_df.shape[0] == 6
assert design_df.shape[0] == 7
@pytest.mark.pairedend_mouse
......@@ -59,4 +59,4 @@ def test_pool_and_psuedoreplicate_pairedend_mouse():
design_file = os.path.join(test_output_path, 'ENCSR451NAE_ppr.tsv')
assert os.path.exists(design_file)
design_df = pd.read_csv(design_file, sep="\t")
assert design_df.shape[0] == 5
assert design_df.shape[0] == 6
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment