Skip to content

Commit

Permalink
fix: properly use GENOME_RELEASE to fix MANE transcripts (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe authored Dec 27, 2023
1 parent d9cc244 commit 79e1854
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pass-1.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ if [[ "$GENOME_RELEASE" == grch37 ]]; then
fi

mehari db create \
$(if [[ "$RELEASE" == grch37 ]]; then \
$(if [[ "$GENOME_RELEASE" == grch37 ]]; then \
echo --path-mane-txs-tsv $DATA_DIR/tmp/mane-txs.tsv; \
fi) \
--path-out $DATA_DIR/pass-1/txs.bin.zst \
Expand Down
2 changes: 1 addition & 1 deletion src/pass-2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ set -x
mkdir -p $DATA_DIR/pass-2

mehari db create \
$(if [[ "$RELEASE" == grch37 ]]; then \
$(if [[ "$GENOME_RELEASE" == grch37 ]]; then \
echo --path-mane-txs-tsv $DATA_DIR/tmp/mane-txs.tsv; \
fi) \
--path-out $DATA_DIR/pass-2/txs.bin.zst \
Expand Down

0 comments on commit 79e1854

Please sign in to comment.