-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
some cleaning and making validParameters() work
- Loading branch information
Showing
3 changed files
with
9 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,10 +11,6 @@ | |
"description": "", | ||
"default": "", | ||
"properties": { | ||
"resume": { | ||
"type": "string", | ||
"description": "Convenient param for detecting resume mistake" | ||
}, | ||
"wf": { | ||
"type": "string", | ||
"description": "Workflow to be run, by default the main one. Alternative is plot", | ||
|
@@ -35,13 +31,13 @@ | |
"annotations": { | ||
"type": "string", | ||
"description": "Path to GTF annotation files", | ||
"format": "file-path", | ||
"format": "file-path-pattern", | ||
"default": "./test/GTF/*_annot-subsetted.gtf.gz" | ||
}, | ||
"genomes": { | ||
"type": "string", | ||
"description": "Path to fasta genome files", | ||
"format": "file-path", | ||
"format": "file-path-pattern", | ||
"default": "./test/GENOMES/*_gDNA-subsetted.fasta.gz" | ||
}, | ||
"cluster": { | ||
|
@@ -128,7 +124,7 @@ | |
} | ||
}, | ||
"plot_parameters": { | ||
"title": "Plot parameters", | ||
"title": "Plot Parameters", | ||
"type": "object", | ||
"description": "Specific parameters for generating plots", | ||
"default": "", | ||
|
@@ -161,7 +157,7 @@ | |
"output_plot": { | ||
"type": "string", | ||
"description": "Path where to store resulting plot", | ||
"format": "file-path", | ||
"format": "directory-path", | ||
"default": "./output_plot" | ||
} | ||
} | ||
|
@@ -173,8 +169,7 @@ | |
"email": { | ||
"type": "string", | ||
"description": "Email for notification", | ||
"format": "email", | ||
"default": "[email protected]" | ||
"format": "email" | ||
} | ||
} | ||
} | ||
|
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 |
---|---|---|
|
@@ -14,7 +14,7 @@ params { | |
short_dist = "2,0.50,0.60,0.25" | ||
prevaln = null | ||
output = "$projectDir/output_test" | ||
email = "[email protected]" | ||
email = null | ||
geneID = "ENSG00000159055" | ||
output_plot = "$projectDir/output_plot" | ||
relevant_exs = "chr21:32274830-32274896" | ||
|