Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Workflow output definition #275

Closed
wants to merge 17 commits into from
Closed
Changes from 1 commit
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
125 changes: 125 additions & 0 deletions output_schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,125 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com/nf-core/fetchngs/master/output_schema.json",
"title": "nf-core/fetchngs pipeline outputs",
"description": "",
"type": "object",
"properties": {
"fastq": {
"type": "array",
"items": {
"type": "object",
"properties": {
"sample": {
"type": "string"
},
"fastq_1": {
"type": "string",
"format": "file-path",
"pattern": "^\\S+\\.f(ast)?q\\.gz$"
},
"fastq_2": {
"type": "string",
"format": "file-path",
"pattern": "^\\S+\\.f(ast)?q\\.gz$"
},
"run_accession": {
"type": "string"
},
"experiment_accession": {
"type": "string"
},
"sample_accession": {
"type": "string"
},
"secondary_sample_accession": {
"type": "string"
},
"study_accession": {
"type": "string"
},
"secondary_study_accession": {
"type": "string"
},
"submission_accession": {
"type": "string"
},
"run_alias": {
"type": "string"
},
"experiment_alias": {
"type": "string"
},
"sample_alias": {
"type": "string"
},
"study_alias": {
"type": "string"
},
"library_layout": {
"type": "string"
},
"library_selection": {
"type": "string"
},
"library_source": {
"type": "string"
},
"library_strategy": {
"type": "string"
},
"library_name": {
"type": "string"
},
"instrument_model": {
"type": "string"
},
"instrument_platform": {
"type": "string"
},
"base_count": {
"type": "integer"
},
"read_count": {
"type": "integer"
},
"tax_id": {
"type": "string"
},
"scientific_name": {
"type": "string"
},
"sample_title": {
"type": "string"
},
"experiment_title": {
"type": "string"
},
"study_title": {
"type": "string"
},
"sample_description": {
"type": "string"
},
"fastq_md5": {
"type": "string",
"pattern": "^[0-9a-f]{32}$"
},
"fastq_bytes": {
"type": "integer"
},
"fastq_ftp": {
"type": "string"
},
"fastq_galaxy": {
"type": "string"
},
"fastq_aspera": {
"type": "string"
}
},
"required": ["sample", "fastq_1"]
bentsherman marked this conversation as resolved.
Show resolved Hide resolved
}
}
}
}
Loading