Skip to content

Commit 9a01f26

Browse files
authored
Add missing required_files to run remotely (#1577)
* Add missing required_files to run remotely Fix the following error: ``` Fatal error: cannot open file '/jetstream2/scratch/main/jobs/65039573/tool_files/scripts/compare.R': No such file or directory ``` * Replace ubuntu-20.04 runner https://github.blog/changelog/2025-01-15-github-actions-ubuntu-20-runner-image-brownout-dates-and-other-breaking-changes/ * Lint R scripts
1 parent 81c6be8 commit 9a01f26

File tree

7 files changed

+406
-230
lines changed

7 files changed

+406
-230
lines changed

.github/workflows/pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ jobs:
177177
runs-on: ${{ matrix.os }}
178178
strategy:
179179
matrix:
180-
os: [ubuntu-20.04]
180+
os: [ubuntu-24.04]
181181
r-version: ['release']
182182
steps:
183183
- uses: actions/checkout@v4

tools/music_deconvolution/macros.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<macros>
2-
<token name="@VERSION_SUFFIX@">4</token>
2+
<token name="@VERSION_SUFFIX@">5</token>
33
<!-- The ESet inspector/constructor and MuSiC tool can have
44
independent Galaxy versions but should reference the same
55
package version always. -->

tools/music_deconvolution/music_compare.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@
3131
</macros>
3232
<expand macro="xrefs"/>
3333
<expand macro="requirements" />
34+
<required_files>
35+
<include path="scripts/compare.R" />
36+
</required_files>
3437
<command detect_errors="exit_code" ><![CDATA[
3538
cat '$conf' >> /dev/stderr &&
3639
mkdir report_data &&

tools/music_deconvolution/music_deconvolution.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
</macros>
77
<expand macro="xrefs"/>
88
<expand macro="requirements" />
9+
<required_files>
10+
<include path="scripts/dendrogram.R" />
11+
<include path="scripts/estimateprops.R" />
12+
</required_files>
913
<command detect_errors="exit_code" ><![CDATA[
1014
cat '$conf' >> /dev/stderr &&
1115
mkdir report_data &&

0 commit comments

Comments
 (0)