Skip to content

Commit

Permalink
Ignore genome incompatibility (#30)
Browse files Browse the repository at this point in the history
* fix: Ignore genome incompatibility

* build: fix image registry
  • Loading branch information
adthrasher authored Jun 2, 2023
1 parent 4b4530b commit fd52875
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker_branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
id: meta
uses: docker/metadata-action@v3
with:
images: ${{ env.REPO_LOWER }}
images: ghcr.io/${{ env.REPO_LOWER }}
tags: |
type=ref,event=branch,prefix=branch-
type=ref,event=pr
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ RUN apk add --no-cache bash
RUN cpan App:cpanminus
RUN cpanm --no-wget Data::Compare && chown -R root:root /root/.cpanm
RUN cpanm --no-wget DB_File XML::Parser::PerlSAX XML::Twig XML::DOM
RUN cpanm --no-wget Bio::Tools::CodonTable
RUN cpanm --no-wget --force Bio::Tools::CodonTable
RUN cpanm --no-wget DBI
RUN cpanm --no-wget Set::IntSpan

Expand Down
2 changes: 1 addition & 1 deletion src/main/docker/RNApeg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,4 @@ if [[ -n "$OUTPUT_DIR" ]]; then
mkdir -p $OUTPUT_DIR
output_arg="-o $OUTPUT_DIR"
fi
junction_extraction_wrapper.pl -no-config -bam $BAMFILE -fasta $FASTA -refflat $REFFLAT -refgene $REFGENE -now ${output_arg}
junction_extraction_wrapper.pl -no-config -ignore-incompatible -bam $BAMFILE -fasta $FASTA -refflat $REFFLAT -refgene $REFGENE -now ${output_arg}

0 comments on commit fd52875

Please sign in to comment.