-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from CenterForMedicalGeneticsGhent/dev
Release PR 1.0.0
- Loading branch information
Showing
41 changed files
with
792 additions
and
399 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,5 @@ results/ | |
testing/ | ||
testing* | ||
*.pyc | ||
.nf-test | ||
null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,20 @@ | ||
repository_type: pipeline | ||
lint: | ||
files_exist: | ||
- CODE_OF_CONDUCT.md | ||
- assets/nf-core-nf-cmgg-wisecondorx_logo_light.png | ||
- docs/images/nf-core-nf-cmgg-wisecondorx_logo_light.png | ||
- docs/images/nf-core-nf-cmgg-wisecondorx_logo_dark.png | ||
- .github/ISSUE_TEMPLATE/config.yml | ||
- .github/workflows/awstest.yml | ||
- .github/workflows/awsfulltest.yml | ||
- CODE_OF_CONDUCT.md | ||
- assets/nf-core-nf-cmgg-wisecondorx_logo_light.png | ||
- docs/images/nf-core-nf-cmgg-wisecondorx_logo_light.png | ||
- docs/images/nf-core-nf-cmgg-wisecondorx_logo_dark.png | ||
- .github/ISSUE_TEMPLATE/config.yml | ||
- .github/workflows/awstest.yml | ||
- .github/workflows/awsfulltest.yml | ||
- lib/WorkflowNf-cmgg-wisecondorx.groovy | ||
nextflow_config: | ||
- manifest.name | ||
- manifest.homePage | ||
- manifest.name | ||
- manifest.homePage | ||
multiqc_config: | ||
- report_comment | ||
- report_comment | ||
files_unchanged: | ||
- .github/ISSUE_TEMPLATE/bug_report.yml | ||
schema_params: false | ||
pipeline_name_conventions: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
sample,fastq_1,fastq_2 | ||
SAMPLE_PAIRED_END,/path/to/fastq/files/AEG588A1_S1_L002_R1_001.fastq.gz,/path/to/fastq/files/AEG588A1_S1_L002_R2_001.fastq.gz | ||
SAMPLE_SINGLE_END,/path/to/fastq/files/AEG588A4_S4_L003_R1_001.fastq.gz, | ||
cram,crai | ||
https://raw.githubusercontent.com/CenterForMedicalGeneticsGhent/nf-cmgg-test-datasets/main/data/genomics/homo_sapiens/illumina/cram/test.cram,, | ||
https://raw.githubusercontent.com/CenterForMedicalGeneticsGhent/nf-cmgg-test-datasets/main/data/genomics/homo_sapiens/illumina/cram/test2.cram,https://raw.githubusercontent.com/CenterForMedicalGeneticsGhent/nf-cmgg-test-datasets/main/data/genomics/homo_sapiens/illumina/cram/test2.cram.crai |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,20 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema", | ||
"$id": "https://raw.githubusercontent.com/CenterForMedicalGeneticsGhent/nf-cmgg-wisecondorx/master/assets/schema_input.json", | ||
"title": "CenterForMedicalGeneticsGhent/nf-cmgg-wisecondorx pipeline - params.input schema", | ||
"description": "Schema for the file provided with params.input", | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"sample": { | ||
"type": "string", | ||
"pattern": "^\\S+$", | ||
"errorMessage": "Sample name must be provided and cannot contain spaces" | ||
}, | ||
"fastq_1": { | ||
"type": "string", | ||
"pattern": "^\\S+\\.f(ast)?q\\.gz$", | ||
"errorMessage": "FastQ file for reads 1 must be provided, cannot contain spaces and must have extension '.fq.gz' or '.fastq.gz'" | ||
}, | ||
"fastq_2": { | ||
"errorMessage": "FastQ file for reads 2 cannot contain spaces and must have extension '.fq.gz' or '.fastq.gz'", | ||
"anyOf": [ | ||
{ | ||
"type": "string", | ||
"pattern": "^\\S+\\.f(ast)?q\\.gz$" | ||
}, | ||
{ | ||
"type": "string", | ||
"maxLength": 0 | ||
} | ||
] | ||
} | ||
"title": "Samplesheet validation schema", | ||
"description": "Schema for the samplesheet used in this pipeline", | ||
"type": "object", | ||
"properties": { | ||
"cram": { | ||
"type": "string", | ||
"pattern": "^\\S+\\.(b|cr)am$", | ||
"format": "file-path" | ||
}, | ||
"required": ["sample", "fastq_1"] | ||
} | ||
"crai": { | ||
"type": "string", | ||
"pattern": "^\\S+\\.(b|cr)ai$", | ||
"format": "file-path" | ||
} | ||
}, | ||
"required": ["cram"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
Nextflow config file for running minimal tests | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
Defines input files and everything required to run a fast and simple pipeline test. | ||
Use as follows: | ||
nextflow run CenterForMedicalGeneticsGhent/nf-cmgg-wisecondorx -profile test,<docker/singularity> --outdir <OUTDIR> | ||
---------------------------------------------------------------------------------------- | ||
*/ | ||
|
||
params { | ||
config_profile_name = 'Test profile' | ||
config_profile_description = 'Minimal test dataset to check pipeline function' | ||
|
||
// Limit resources so that this can run on GitHub Actions | ||
max_cpus = 2 | ||
max_memory = '6.GB' | ||
max_time = '6.h' | ||
|
||
genomes_ignore = true | ||
|
||
fasta = params.test_data["homo_sapiens"]["genome"]["genome_fasta"] | ||
fai = params.test_data["homo_sapiens"]["genome"]["genome_fasta_fai"] | ||
|
||
// Input data | ||
input = "${projectDir}/tests/inputs/samplesheet.csv" | ||
outdir = "${params.outputDir}" | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.