From c84c55e979b892438671aceb558b0a15fbef47ad Mon Sep 17 00:00:00 2001 From: Nicolas Vannieuwkerke Date: Thu, 11 Apr 2024 10:13:10 +0200 Subject: [PATCH] prettier --- docs/samplesheets/fromSamplesheet.md | 1 - docs/samplesheets/samplesheetToList.md | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/samplesheets/fromSamplesheet.md b/docs/samplesheets/fromSamplesheet.md index 9f21eb54..d99682cb 100644 --- a/docs/samplesheets/fromSamplesheet.md +++ b/docs/samplesheets/fromSamplesheet.md @@ -11,7 +11,6 @@ This channel operator validates and converts a sample sheet to ready-to-use chan The operator has one mandatory argument: the path of the JSON schema file corresponding to the samplesheet. This can be either a string with the relative path (from the root of the pipeline) or a file object of the schema. - ```groovy Channel.of("path/to/samplesheet").fromSamplesheet("path/to/json/schema") ``` diff --git a/docs/samplesheets/samplesheetToList.md b/docs/samplesheets/samplesheetToList.md index 933e1f62..9c6b1b59 100644 --- a/docs/samplesheets/samplesheetToList.md +++ b/docs/samplesheets/samplesheetToList.md @@ -10,8 +10,9 @@ description: Function to create a list from a sample sheet. This function validates and converts a sample sheet to a list in a similar way to the [`fromSamplesheet`](./fromSamplesheet.md) channel operator. This is done using information encoded within a sample sheet schema (see the [docs](../nextflow_schema/sample_sheet_schema_specification.md)). The function has two mandatory arguments: + 1. The path to the samplesheet -2. The path to the JSON schema file corresponding to the samplesheet. +2. The path to the JSON schema file corresponding to the samplesheet. These can be either a string with the relative path (from the root of the pipeline) or a file object of the schema.