Warning
This document is for an in-development version of Galaxy. You can alternatively view this page in the latest release if it exists or view the top of the latest release's documentation.
Source code for galaxy.tool_util.linters.cwl
"""Linter for CWL tools."""
from typing import TYPE_CHECKING
lint_tool_types = ["cwl"]
from galaxy.tool_util.cwl.schema import schema_loader
from galaxy.tool_util.lint import Linter
if TYPE_CHECKING:
from galaxy.tool_util.lint import LintContext
from galaxy.tool_util.parser import ToolSource
[docs]
class CWLValid(Linter):
[docs]
@classmethod
def lint(cls, tool_source: "ToolSource", lint_ctx: "LintContext"):
raw_reference = schema_loader.raw_process_reference(tool_source.source_path)
try:
schema_loader.process_definition(raw_reference)
except Exception:
return
lint_ctx.info("CWL appears to be valid.", linter=cls.name())
[docs]
class CWLInValid(Linter):
[docs]
@classmethod
def lint(cls, tool_source: "ToolSource", lint_ctx: "LintContext"):
raw_reference = schema_loader.raw_process_reference(tool_source.source_path)
try:
schema_loader.process_definition(raw_reference)
except Exception as e:
lint_ctx.error(f"Failed to valdiate CWL artifact: {e}", linter=cls.name())
[docs]
class CWLVersionMissing(Linter):
[docs]
@classmethod
def lint(cls, tool_source: "ToolSource", lint_ctx: "LintContext"):
raw_reference = schema_loader.raw_process_reference(tool_source.source_path)
cwl_version = raw_reference.process_object.get("cwlVersion", None)
if cwl_version is None:
lint_ctx.error("CWL file does not contain a 'cwlVersion'", linter=cls.name())
[docs]
class CWLVersionUnknown(Linter):
[docs]
@classmethod
def lint(cls, tool_source: "ToolSource", lint_ctx: "LintContext"):
raw_reference = schema_loader.raw_process_reference(tool_source.source_path)
cwl_version = raw_reference.process_object.get("cwlVersion", None)
if cwl_version not in ["v1.0"]:
lint_ctx.warn(
f"CWL version [{cwl_version}] is unknown, we recommend the v1.0 the stable release.", linter=cls.name()
)
[docs]
class CWLVersionGood(Linter):
[docs]
@classmethod
def lint(cls, tool_source: "ToolSource", lint_ctx: "LintContext"):
raw_reference = schema_loader.raw_process_reference(tool_source.source_path)
cwl_version = raw_reference.process_object.get("cwlVersion", None)
if cwl_version in ["v1.0"]:
lint_ctx.info(f"Modern CWL version [{cwl_version}].", linter=cls.name())
[docs]
class CWLDockerMissing(Linter):
[docs]
@classmethod
def lint(cls, tool_source: "ToolSource", lint_ctx: "LintContext"):
_, containers, *_ = tool_source.parse_requirements_and_containers()
if len(containers) == 0:
lint_ctx.warn("Tool does not specify a DockerPull source.", linter=cls.name())
[docs]
class CWLDockerGood(Linter):
[docs]
@classmethod
def lint(cls, tool_source: "ToolSource", lint_ctx: "LintContext"):
_, containers, *_ = tool_source.parse_requirements_and_containers()
if len(containers) > 0:
identifier = containers[0].identifier
lint_ctx.info(f"Tool will run in Docker image [{identifier}].", linter=cls.name())