Draft
Conversation
SaimMomin12
reviewed
Apr 17, 2026
Contributor
SaimMomin12
left a comment
There was a problem hiding this comment.
Thanks @mirelaminkova 🚀
Some of the comments inline.
| @@ -1,18 +1,14 @@ | |||
| <tool id="odgi_build" name="odgi build" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="21.05"> | |||
| <tool id="odgi_build" name="odgi build" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="24.1"> | |||
Contributor
There was a problem hiding this comment.
Suggested change
| <tool id="odgi_build" name="odgi build" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="24.1"> | |
| <tool id="odgi_build" name="odgi build" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> |
We can introduce above TOKEN in macros.xml
| @@ -0,0 +1,76 @@ | |||
| <tool id="odgi_cover" name="odgi cover" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="24.1"> | |||
Contributor
There was a problem hiding this comment.
Suggested change
| <tool id="odgi_cover" name="odgi cover" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="24.1"> | |
| <tool id="odgi_cover" name="odgi cover" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> |
| <inputs> | ||
| <expand macro="graph_input_param"/> | ||
| <param argument="--hogwild-depth" type="float" optional="true" min="0" label="Cover graph to this average depth" help="Randomly cover the graph until reaching the specified average depth."/> | ||
| <param argument="--num-paths-per-component" type="integer" optional="true" min="1" label="Number of paths to generate per component"/> |
Contributor
There was a problem hiding this comment.
Suggested change
| <param argument="--num-paths-per-component" type="integer" optional="true" min="1" label="Number of paths to generate per component"/> | |
| <param argument="--num-paths-per-component" type="integer" optional="true" value="" min="1" label="Number of paths to generate per component"/> |
Please add value="" whereever the param is optional
| <param argument="--save-coverages" type="boolean" truevalue="true" falsevalue="" checked="false" label="Write node coverages table" help="Generate a tabular file with per-node coverage statistics."/> | ||
| </inputs> | ||
| <outputs> | ||
| <data name="output" format="odgi" label="${tool.name} on ${on_string}"/> |
| <param argument="--save-coverages" type="boolean" truevalue="true" falsevalue="" checked="false" label="Write node coverages table" help="Generate a tabular file with per-node coverage statistics."/> | ||
| </inputs> | ||
| <outputs> | ||
| <data name="output" format="odgi" label="${tool.name} on ${on_string}"/> |
Contributor
There was a problem hiding this comment.
Suggested change
| <data name="output" format="odgi" label="${tool.name} on ${on_string}"/> | |
| <data name="output" format="odgi" label="${tool.name} on ${on_string}: Output graph"/> |
| @@ -0,0 +1,138 @@ | |||
| <tool id="odgi_layout" name="odgi layout" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="24.1"> | |||
Contributor
There was a problem hiding this comment.
Suggested change
| <tool id="odgi_layout" name="odgi layout" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="24.1"> | |
| <tool id="odgi_layout" name="odgi layout" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> |
| <token name="@TOOL_VERSION@">0.3</token> | ||
| <token name="@VERSION_SUFFIX@">1</token> | ||
| <token name="@TOOL_VERSION@">0.9.3</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.1</token> |
| @@ -0,0 +1,51 @@ | |||
| <tool id="odgi_normalize" name="odgi normalize" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="24.1"> | |||
Contributor
There was a problem hiding this comment.
Suggested change
| <tool id="odgi_normalize" name="odgi normalize" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="24.1"> | |
| <tool id="odgi_normalize" name="odgi normalize" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> |
| @@ -0,0 +1,62 @@ | |||
| <tool id="odgi_overlap" name="odgi overlap" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="24.1"> | |||
Contributor
There was a problem hiding this comment.
Suggested change
| <tool id="odgi_overlap" name="odgi overlap" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="24.1"> | |
| <tool id="odgi_overlap" name="odgi overlap" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> |
| @@ -0,0 +1,85 @@ | |||
| <tool id="odgi_paths" name="odgi paths" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="24.1"> | |||
Contributor
There was a problem hiding this comment.
Suggested change
| <tool id="odgi_paths" name="odgi paths" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="24.1"> | |
| <tool id="odgi_paths" name="odgi paths" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> |
Please change this throughout
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.
Adding new odgi tools + fixing tests for some of the existing tools from #7371