Request for adding TopAnat tool to IUC: please review - #8218
Open
fbastian wants to merge 16 commits into
Open
Conversation
Author
|
Please review |
|
⏳ Some CI checks are still running. Please wait for them to complete before requesting a review. |
fbastian
marked this pull request as draft
July 24, 2026 12:56
bgruening
reviewed
Jul 26, 2026
…rgument handling directly into the XML config
Author
|
@bgruening Could you please add the |
…some environments
Member
|
Done. |
fbastian
marked this pull request as ready for review
July 29, 2026 14:14
Author
|
please review |
Comment on lines
+370
to
+372
| The species for which the analysis is performed. Must be provided in the format ``Genus_species`` | ||
| (e.g. ``Homo_sapiens``, ``Mus_musculus``, ``Danio_rerio``). See the `Bgee website`_ for the full | ||
| list of supported species. |
Contributor
There was a problem hiding this comment.
Suggested change
| The species for which the analysis is performed. Must be provided in the format ``Genus_species`` | |
| (e.g. ``Homo_sapiens``, ``Mus_musculus``, ``Danio_rerio``). See the `Bgee website`_ for the full | |
| list of supported species. | |
| The species for which the analysis is performed. |
SaimMomin12
reviewed
Aug 5, 2026
SaimMomin12
left a comment
Contributor
There was a problem hiding this comment.
Thanks @fbastian for the PR. Some comments inline
Comment on lines
+4
to
+5
| - Statistics | ||
| - Single Cell |
Contributor
There was a problem hiding this comment.
Suggested change
| - Statistics | |
| - Single Cell |
| @@ -0,0 +1,456 @@ | |||
| <tool id="topanat" name="TopAnat" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="23.0"> | |||
Contributor
There was a problem hiding this comment.
Suggested change
| <tool id="topanat" name="TopAnat" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="23.0"> | |
| <tool id="topanat" name="TopAnat" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> |
Bump profile to 25.0
| <description>GO-like enrichment of anatomical terms and cell types mapped to genes by expression patterns</description> | ||
| <macros> | ||
| <token name="@TOOL_VERSION@">2.38.1</token> | ||
| <token name="@VERSION_SUFFIX@">0</token> |
Contributor
There was a problem hiding this comment.
Suggested change
| <token name="@VERSION_SUFFIX@">0</token> | |
| <token name="@VERSION_SUFFIX@">0</token> | |
| <token name="@PROFILE@">25.0</token> |
| cat(paste("Time taken:", time_taken, "seconds\n")) | ||
| ]]></configfile> | ||
| </configfiles> | ||
| <inputs> |
Contributor
There was a problem hiding this comment.
Can we do planemo format topanat.xml?
| <param name="fg_file" | ||
| argument="--fgFile" | ||
| type="data" | ||
| format="tabular,txt" |
Contributor
There was a problem hiding this comment.
Suggested change
| format="tabular,txt" | |
| format="tabular" |
arash77
added a commit
to arash77/tools-iuc
that referenced
this pull request
Aug 5, 2026
The lint job resolved the PR via an associated-PR lookup (sharesight/find-github-pull-request, then 8BitJonny/gh-get-current-pr). That endpoint omits open PRs whose head commit is reachable from the queried repo's default branch, and the action queries the fork rather than the base repo on pull_request events. Two of the 25 open PRs sampled hit this today (galaxyproject#8279, galaxyproject#8218) and both carry skip labels: the step was gated off, EXTRA_SKIP was never written, and planemo linted URLs anyway with no indication the label had been ignored. On pull_request the PR number is in the event payload, so query it directly. This drops the third-party action from the fork-facing path entirely and restores exact label matching over a JSON array, which a label containing a comma could previously spoof. The labels are fetched at run time rather than read from the payload, so applying a label after a failed run and re-running now works; pull_request does not fire on 'labeled', so payload labels would be stale on re-run. Direct pushes to the default branch skip the step and lint with full checks, replacing the failIfNotFound abort. Also add explicit least-privilege permissions to both jobs, and fall back to github.token in deploy-report: an explicitly empty token overrides create-or-update-comment's own github.token default, so repos without secrets.PAT failed there. Refs: bgruening/galaxytools#1944
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
FOR CONTRIBUTOR:
There are two labels that allow to ignore specific (false positive) tool linter errors:
skip-version-check: Use it if only a subset of the tools has been updated in a suite.skip-url-check: Use it if github CI sees 403 errors, but the URLs work.To request a review once your PR is ready, comment "please review" on the PR. This will
automatically apply the
ready-for-reviewlabel if the PR is not a draft, all reviewthreads are resolved, and all CI checks have passed.