Skip to content

Commit

Permalink
Fix docs images
Browse files Browse the repository at this point in the history
  • Loading branch information
apeltzer committed Apr 18, 2020
1 parent 16f2d74 commit b2b411b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### `Fixed`

* [#368](https://github.com/nf-core/eager/issues/368) - Fixed the profile `test` to contain a parameter for `--paired_end`.
* [#374](https://github.com/nf-core/eager/issues/374) - Fixed output documentation rendering not containing images

### `Dependencies`

Expand Down
2 changes: 2 additions & 0 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ if (params.help){
ch_multiqc_config = file("$baseDir/assets/multiqc_config.yaml", checkIfExists: true)
ch_multiqc_custom_config = params.multiqc_config ? Channel.fromPath(params.multiqc_config, checkIfExists: true) : Channel.empty()
ch_output_docs = file("$baseDir/docs/output.md", checkIfExists: true)
ch_output_docs_images = file("$baseDir/docs/images/", checkIfExists: true)
where_are_my_files = file("$baseDir/assets/where_are_my_files.txt")

// Read in files properly from TSV file
Expand Down Expand Up @@ -2387,6 +2388,7 @@ process output_documentation {

input:
file output_docs from ch_output_docs
file images from ch_output_docs_images

output:
file "results_description.html"
Expand Down

0 comments on commit b2b411b

Please sign in to comment.