-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into nf-core-template-merge-2.13.1
- Loading branch information
Showing
103 changed files
with
10,049 additions
and
35 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 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
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,4 @@ results/ | |
testing/ | ||
testing* | ||
*.pyc | ||
*.code-workspace |
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,39 @@ | ||
chr1 1 | ||
chr2 2 | ||
chr3 3 | ||
chr4 4 | ||
chr5 5 | ||
chr6 6 | ||
chr7 7 | ||
chr8 8 | ||
chr9 9 | ||
chr10 10 | ||
chr11 11 | ||
chr12 12 | ||
chr13 13 | ||
chr14 14 | ||
chr15 15 | ||
chr16 16 | ||
chr17 17 | ||
chr18 18 | ||
chr19 19 | ||
chr20 20 | ||
chr21 21 | ||
chr22 22 | ||
chr23 23 | ||
chr24 24 | ||
chr25 25 | ||
chr26 26 | ||
chr27 27 | ||
chr28 28 | ||
chr29 29 | ||
chr30 30 | ||
chr31 31 | ||
chr32 32 | ||
chr33 33 | ||
chr34 34 | ||
chr35 35 | ||
chr36 36 | ||
chr37 37 | ||
chr38 38 | ||
chr39 X |
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,2 @@ | ||
chr,start,end | ||
20,20000000,2200000 |
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, | ||
sample,BAM,BAI | ||
1_BAM_1X,/path/to/.bam,/path/to/.bai | ||
1_BAM_SNP,/path/to/.bam,/path/to/.bai |
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,35 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema", | ||
"$id": "https://raw.githubusercontent.com/nf-core/phaseimpute/master/assets/schema_input.json", | ||
"title": "nf-core/phaseimpute pipeline - params.input_region schema", | ||
"description": "Schema for the file provided with params.input_region", | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"chr": { | ||
"anyOf": [ | ||
{ | ||
"type": "string", | ||
"pattern": "^\\S+$" | ||
}, | ||
{ | ||
"type": "integer", | ||
"pattern": "^\\d+$" | ||
} | ||
] | ||
}, | ||
"start": { | ||
"type": "integer", | ||
"pattern": "^\\d+$", | ||
"errorMessage": "Region start name must be provided, cannot contain spaces and must be numeric" | ||
}, | ||
"end": { | ||
"type": "integer", | ||
"pattern": "^\\d+$", | ||
"errorMessage": "Region end name must be provided, cannot contain spaces and must be numeric" | ||
} | ||
}, | ||
"required": ["chr", "start", "end"] | ||
} | ||
} |
Oops, something went wrong.