Skip to content

Commit 68890e1

Browse files
committed
fix links to old src folder
1 parent a81994a commit 68890e1

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

docs/nextflow_schema/nextflow_schema_examples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ It is used as a test fixture in the nf-schema package [here](https://github.com/
1616
More examples can be found in the plugin [`testResources` directory](https://github.com/nextflow-io/nf-schema/master/plugins/nf-schema/testResources/).
1717

1818
```json
19-
--8<-- "plugins/nf-schema/src/testResources/nextflow_schema.json"
19+
--8<-- "src/testResources/nextflow_schema.json"
2020
```

docs/nextflow_schema/sample_sheet_schema_examples.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,12 @@ You can see this, used for validating sample sheets with `--input` here: [`asset
6262

6363
You can see a very feature-complete example JSON Schema for a sample sheet schema file below.
6464

65-
It is used as a test fixture in the nf-schema package [here](https://github.com/nextflow-io/nf-schema/blob/master/plugins/nf-schema/src/testResources/schema_input.json).
65+
It is used as a test fixture in the nf-schema package [here](https://github.com/nextflow-io/nf-schema/blob/master/src/testResources/schema_input.json).
6666

6767
!!! note
6868

69-
More examples can be found in the plugin [`testResources` directory](https://github.com/nextflow-io/nf-schema/blob/master/plugins/nf-schema/src/testResources/).
69+
More examples can be found in the plugin [`testResources` directory](https://github.com/nextflow-io/nf-schema/blob/master/src/testResources/).
7070

7171
```json
72-
--8<-- "plugins/nf-schema/src/testResources/schema_input.json"
72+
--8<-- "src/testResources/schema_input.json"
7373
```

docs/nextflow_schema/sample_sheet_schema_specification.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,4 @@ For example:
8888
```
8989

9090
will convert the `field` value to a meta value, resulting in the channel `[[id:value]...]`
91-
See [here](https://github.com/nextflow-io/nf-schema/blob/master/plugins/nf-schema/src/testResources/schema_input.json#L10-L25) for an example in the sample sheet.
91+
See [here](https://github.com/nextflow-io/nf-schema/blob/master/src/testResources/schema_input.json#L10-L25) for an example in the sample sheet.

docs/samplesheets/validate_sample_sheet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ parse and validate the provided file contents using this JSON schema.
1010
It can validate CSV, TSV, JSON and YAML files.
1111

1212
The path of the schema file must be relative to the root of the pipeline directory.
13-
See an example in the `input` field from the [example schema.json](https://raw.githubusercontent.com/nextflow-io/nf-schema/master/plugins/nf-schema/src/testResources/nextflow_schema_with_samplesheet.json#L20).
13+
See an example in the `input` field from the [example schema.json](https://raw.githubusercontent.com/nextflow-io/nf-schema/master/src/testResources/nextflow_schema_with_samplesheet.json#L20).
1414

1515
```json
1616
{

docs/schema_input.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://json-schema.org/draft/2020-12/schema",
3-
"$id": "https://raw.githubusercontent.com/nextflow-io/nf-schema/master/plugins/nf-schema/src/testResources/schema_input.json",
3+
"$id": "https://raw.githubusercontent.com/nextflow-io/nf-schema/master/src/testResources/schema_input.json",
44
"title": "Samplesheet validation schema",
55
"description": "Schema for the samplesheet used in this pipeline",
66
"type": "object",

src/testResources/schema_input.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://json-schema.org/draft/2020-12/schema",
3-
"$id": "https://raw.githubusercontent.com/nextflow-io/nf-schema/master/plugins/nf-schema/src/testResources/schema_input.json",
3+
"$id": "https://raw.githubusercontent.com/nextflow-io/nf-schema/master/src/testResources/schema_input.json",
44
"title": "Samplesheet validation schema",
55
"description": "Schema for the samplesheet used in this pipeline",
66
"type": "array",

src/testResources/schema_input_with_arrays.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://json-schema.org/draft/2020-12/schema",
3-
"$id": "https://raw.githubusercontent.com/nextflow-io/nf-schema/master/plugins/nf-schema/src/testResources/schema_input.json",
3+
"$id": "https://raw.githubusercontent.com/nextflow-io/nf-schema/master/src/testResources/schema_input.json",
44
"title": "Samplesheet validation schema",
55
"description": "Schema for the samplesheet used in this pipeline",
66
"type": "array",

0 commit comments

Comments
 (0)