Skip to content

Commit

Permalink
update integrate test
Browse files Browse the repository at this point in the history
  • Loading branch information
gtonkinhill committed Dec 22, 2023
1 parent 9852e90 commit 30393cf
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions tests/test_integrate.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,19 @@

def test_integrate(datafolder):

with tempfile.TemporaryDirectory() as tmpoutdir, \
tempfile.TemporaryDirectory() as tmpdirA, \
tempfile.TemporaryDirectory() as tmpdirB:
with tempfile.TemporaryDirectory() as tmpoutdir:
# run panaroo on pairs of gff3 files
sys.argv = ["", "-i",
datafolder + "aa1.gff",
datafolder + "aa2.gff",
"--no_clean_edges",
"--clean-mode", "sensitive",
"-o", tmpdirA]
"-o", tmpoutdir]
main()

# merge the result
sys.argv = ["",
"-d", tmpdirA,
"-d", tmpoutdir,
"-i", datafolder + "aa3.gff",
"-o", tmpoutdir]
try:
Expand Down

0 comments on commit 30393cf

Please sign in to comment.