Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix copypasta #5420

Merged
merged 1 commit into from
Oct 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions topics/dev/tutorials/tool-from-scratch/tutorial.md
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [rdjsonl] <GTN:028> reported by reviewdog 🐶
You have skipped a heading level, please correct this.

Listing of Heading Levels
# Galaxy Tools and Conda
## Writing a Bioconda Recipe
## Building the recipe locally
## Creating a Pull Request
## Installing a Conda Package
# Galaxy Tool Wrappers
## Installing Planemo
## Initializing a Tool Wrapper
## Galaxy Tool Wrappers
### Tool section
### Description section
### Macros section
### Bio.tools ID
### Requirements section
### Input section
#### *Param*
#### *Conditional*
#### *Section*
#### *Inputs Section in Practice*
### Outputs section
#### *Filtering the output*
#### *Output collections*
#### *Discover datasets*
### Command section
#### *Cheetah commands*
# if ${parameter} == "value":
# end if
# if ${parameter} == "value":
# else:
# end if
# if ${parameter} == "value":
# else if ${parameter} == "other value":
# else:
# end if
# for value in ${param}
# end for
# set $variable = value
#### *Using other scripts*
#### *In practice*
#### Symlinks
### Test section
#### *Collections and sections in tests*
### Help section
### Citations section
## Final wrapper
## Toolshed file
# Testing Galaxy tool with `planemo`
## Using `planemo` to lint tools
## Using `planemo` to test tools
## Using `planemo` to serve tools
# Publishing Galaxy tools
## Fork and clone the github repository
## Create a pull request for a new tool
## The IUC style continuous integration workflows
## Create your own IUC style tool repository
# Conclusion

Original file line number Diff line number Diff line change
Expand Up @@ -433,8 +433,7 @@ anyone wrapping a tool, a more complete list is available in [the Galaxy tool do

Planemo is an important tool within the Galaxy development workflow. Although it will be covered in greater detail in the
next section of this tutorial, one of its functions is necessary for the tool wrapper development. `planemo` is available
via the python package manager `pip`. To that end, before beginning this section, please install `planemo` locally by running
`planemo`. To that end, before beginning this section, please install planemo locally by running
via the python package manager `pip`. To that end, before beginning this section, please install planemo locally by running

> <hands-on-title>Installing `planemo` via pip</hands-on-title>
>
Expand Down
Loading