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

Clustering modules #2

Merged
merged 10 commits into from
Mar 26, 2024
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
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ indent_size = unset
[/assets/email*]
indent_size = unset

[/assets/ArborView.html]
trim_trailing_whitespace = unset

# ignore Readme
[README.md]
indent_style = unset
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,7 @@ results/
.DS_Store
testing/
testing*
/.nf-test
/.nf-test.log
*.pyc
*.swp
1 change: 1 addition & 0 deletions .nf-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ lint:
- assets/email_template.txt
- docs/README.md
- LICENSE
- .gitignore
pipeline_name_conventions: False
actions_awsfulltest: False
multiqc_config:
Expand Down
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ testing/
testing*
*.pyc
bin/
/assets/ArborView.html
2,372 changes: 2,372 additions & 0 deletions assets/ArborView.html

Large diffs are not rendered by default.

22 changes: 5 additions & 17 deletions assets/schema_input.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,25 +14,13 @@
"unique": true,
"errorMessage": "Sample name must be provided and cannot contain spaces"
},
"fastq_1": {
"mlst_alleles": {
"type": "string",
"pattern": "^\\S+\\.f(ast)?q(\\.gz)?$",
"errorMessage": "FastQ file for reads 1 must be provided, cannot contain spaces and must have the extension: '.fq', '.fastq', '.fq.gz' or '.fastq.gz'"
},
"fastq_2": {
"errorMessage": "FastQ file for reads 2 cannot contain spaces and must have the extension: '.fq', '.fastq', '.fq.gz' or '.fastq.gz'",
"anyOf": [
{
"type": "string",
"pattern": "^\\S+\\.f(ast)?q(\\.gz)?$"
},
{
"type": "string",
"maxLength": 0
}
]
"format": "file-path",
"pattern": "^\\S+\\.mlst\\.json(\\.gz)?$",
"errorMessage": "MLST JSON file from locidex report, cannot contain spaces and must have the extension: '.mlst.json' or '.mlst.json.gz'"
}
},
"required": ["sample", "fastq_1"]
"required": ["sample", "mlst_alleles"]
}
}
259 changes: 0 additions & 259 deletions bin/check_samplesheet.py

This file was deleted.

Loading
Loading