Skip to content

Commit

Permalink
os move
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Kofman committed Nov 21, 2024
1 parent d0c13f2 commit 4b24baa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion marine.py
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ def run(bam_filepath, annotation_bedfile_path, output_folder, contigs=[], strand
# Take care of the case where no contigs are specified, so that all contigs available are processed
broken_up_contigs = [[]]
else:
if barcode_whitelist_file:
if barcode_tag:
# For single cell sequencing we will only process this many contigs at a time
broken_up_contigs = get_broken_up_contigs(contigs, num_per_sublist)

Expand Down
6 changes: 4 additions & 2 deletions tests/integration_tests_auto_check.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import pandas as pd
import sys
import os
from glob import glob


test_name_to_expectations = {
"edge_case_test": {
Expand Down Expand Up @@ -292,8 +295,7 @@
print("\n\t ~~~ {} FAILED! ~~~\n".format(test_name))
failures += 1

import os
from glob import glob


tests_dir = sys.argv[1]
print('tests dir is {}'.format(tests_dir))
Expand Down

0 comments on commit 4b24baa

Please sign in to comment.