Skip to content

Commit

Permalink
Merge pull request galaxyproject#4158 from fubar2/tfdocker
Browse files Browse the repository at this point in the history
Updates to both ToolFactory topics to fix broken installation instructions.
  • Loading branch information
hexylena authored May 21, 2023
2 parents fdf710d + 0d0963c commit e90ee43
Show file tree
Hide file tree
Showing 7 changed files with 322 additions and 457 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,4 @@ jobs:
with:
rubocop_version: gemfile
reporter: github-pr-review
fail_on_error: true
8 changes: 7 additions & 1 deletion bin/validate-frontmatter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,13 @@ def self.lint_quiz_file(fn)
def self.run
errors = []
# Topics
materials = Dir.glob('./topics/**/metadata.*')
materials = (Dir.glob('./metadata/*.yaml') + Dir.glob('./metadata/*.yml'))
.grep_v(/schema-*/)
.select do |x|
d = YAML.load_file(x)
d.key? 'maintainers' or d.key? 'summary' or d.key? 'type'
end

errors += materials.map { |x| [x, lint_topic(x)] }

# Lint tutorials/slides/metadata
Expand Down
2 changes: 1 addition & 1 deletion metadata/one-health.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ tag_based: true
maintainers:
- wm75
- pvanheus
- tklingstrom
- TKlingstrom
- hexylena
2 changes: 1 addition & 1 deletion news/_posts/2023-05-15-isoform-usage-training.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ contributions:
cover: news/images/isoform_usage_post.jpg
coveralt: "Schematic of an isoform switch and detection pipeline. Data is annotated and a prediction is made for isoform switch consequences"
tags: [new tutorial]
tutorial: topics/transcriptomics/tutorials/differential-isoform-expression/tutorial.md
tutorial: topics/transcriptomics/tutorials/differential-isoform-expression/tutorial.html
---

The GTN hosts a new training for analyzing alternative splicing at genome-wide scale!
Expand Down
Binary file modified topics/dev/images/ToolFactory_big_picture.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
408 changes: 134 additions & 274 deletions topics/dev/tutorials/tool-generators-advanced/tutorial.md

Large diffs are not rendered by default.

358 changes: 178 additions & 180 deletions topics/dev/tutorials/tool-generators/tutorial.md

Large diffs are not rendered by default.

0 comments on commit e90ee43

Please sign in to comment.