Skip to content

Commit

Permalink
Minor changes, paths, config and script
Browse files Browse the repository at this point in the history
  • Loading branch information
emmarousseau committed Apr 11, 2024
1 parent ab087fc commit 92a1645
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@
- `salmon/salmon_quant`: Transcript quantification from RNA-seq data (PR #24).

* `samtools`:
- `samtools/flagstat`: Counts the number of alignments in SAM/BAM/CRAM files for each FLAG type (PR #31).
- `samtools/idxstats`: Reports alignment summary statistics for a SAM/BAM/CRAM file (PR #32).
- `samtools/index`: Index SAM/BAM/CRAM files (PR #35).
- `samtools/samtools_flagstat`: Counts the number of alignments in SAM/BAM/CRAM files for each FLAG type (PR #31).
- `samtools/samtools_idxstats`: Reports alignment summary statistics for a SAM/BAM/CRAM file (PR #32).
- `samtools/samtools_index`: Index SAM/BAM/CRAM files (PR #35).

## MAJOR CHANGES

Expand Down
2 changes: 1 addition & 1 deletion src/samtools/samtools_index/config.vsh.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ argument_groups:
type: file
description: Output file name
required: true
must_exist: false
direction: output
example: out.bam.bai
- name: Options
arguments:
Expand Down
2 changes: 1 addition & 1 deletion src/samtools/samtools_index/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ set -e
[[ "$par_csi" == "false" ]] && unset par_csi
[[ "$par_multiple" == "false" ]] && unset par_multiple

$(which samtools) index \
samtools index \
"$par_input" \
${par_csi:+-c} \
${par_bai:+-b} \
Expand Down
2 changes: 1 addition & 1 deletion src/samtools/samtools_index/test.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

test_dir="${meta_resources_dir}test_data"
test_dir="${meta_resources_dir}/test_data"

echo ">>> Testing $meta_functionality_name"

Expand Down

0 comments on commit 92a1645

Please sign in to comment.