Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,36 @@ <h4>Workflow execution completed unsuccessfully!</h4>
<dd class="col-sm-9"><code>${workflow.scriptId}</code></dd>
<% } %>

<% if (workflow.manifest.name) { %>
<dt class="col-sm-3">Workflow name</dt>
<dd class="col-sm-9"><samp>${workflow.manifest.name}</samp></dd>
<% } %>

<% if (workflow.manifest.version) { %>
<dt class="col-sm-3">Workflow version</dt>
<dd class="col-sm-9"><samp>${workflow.manifest.version}</samp></dd>
<% } %>

<% if (workflow.manifest.description) { %>
<dt class="col-sm-3">Workflow description</dt>
<dd class="col-sm-9">${workflow.manifest.description}</dd>
<% } %>

<% if (workflow.manifest.author) { %>
<dt class="col-sm-3">Workflow author</dt>
<dd class="col-sm-9">${workflow.manifest.author}</dd>
<% } %>

<% if (workflow.manifest.homePage) { %>
<dt class="col-sm-3">Workflow home page</dt>
<dd class="col-sm-9"><a href="${workflow.manifest.homePage}" target="_blank">${workflow.manifest.homePage}</a></dd>
<% } %>

<% if (workflow.manifest.doi) { %>
<dt class="col-sm-3">Workflow DOI</dt>
<dd class="col-sm-9"><a href="https://doi.org/${workflow.manifest.doi}" target="_blank">${workflow.manifest.doi}</a></dd>
<% } %>

<dt class="col-sm-3">Workflow session</dt>
<dd class="col-sm-9"><code>${workflow.sessionId}</code></dd>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import java.time.OffsetDateTime

import groovy.json.JsonSlurper
import nextflow.NextflowMeta
import nextflow.config.Manifest
import nextflow.processor.TaskHandler
import nextflow.processor.TaskId
import nextflow.script.FusionMetadata
Expand Down Expand Up @@ -126,7 +127,8 @@ class ReportObserverTest extends Specification {
stats: new WorkflowStats(),
wave: new WaveMetadata(true),
fusion: new FusionMetadata(true, '1.2.3'),
nextflow: new NextflowMeta('0.27.9', 3232, '2017-12-12')
nextflow: new NextflowMeta('0.27.9', 3232, '2017-12-12'),
manifest: new Manifest()
)

def file = TestHelper.createInMemTempFile('report.html')
Expand Down
Loading