Skip to content

Commit

Permalink
fix bam detection
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewprzh committed Apr 3, 2024
1 parent 44acced commit 5b4143e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Group_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
if: always()
shell: bash
env:
STEP_NAME: GROUP1.TAG.SIRVs
STEP_NAME: GROUP1.TAG.SIRVs.R10
run: |
export PATH=$PATH:${{env.BIN_PATH}}
python3 ${{env.LAUNCHER}} ${{env.CFG_DIR}}/${{env.STEP_NAME}}.cfg -o ${{env.OUTPUT_BASE}}
Expand Down
2 changes: 1 addition & 1 deletion tests/github/run_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def find_bam(output_folder, label):

for l in open(os.path.join(output_folder, "isoquant.log")):
if l.find("BAM file: ") != -1:
return l.strip().split("-1")
return l.strip().split()[-1]

return None

Expand Down

0 comments on commit 5b4143e

Please sign in to comment.