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

fixed column number in design

parent 8d826632
Branches
Tags
1 merge request!2Resolve "Remove unnecessary columns from design file"
Pipeline #5217 failed with stages
in 3 hours, 46 minutes, and 29 seconds
......@@ -24,14 +24,14 @@ def steps_1(steps):
@pytest.fixture
def steps_2(steps_1):
steps_1.extend([
"cut -f7"
"cut -f4"
])
return steps_1
@pytest.mark.unit
def test_run_one_step(steps_1, capsys):
check_output = 'ENCLB170KFO\tENCSR265ZXX\tA549\tNone\t100nm Dex\t1\tENCFF115PAE.fastq.gz'.encode('UTF-8')
check_output = 'ENCLB170KFO\tENCSR265ZXX\t1\tENCFF115PAE.fastq.gz'.encode('UTF-8')
out, err = utils.run_pipe(steps_1)
output, errors = capsys.readouterr()
assert "first step shlex to stdout" in output
......
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