From 6679281344022fbabe22a1a831ae849a59d73003 Mon Sep 17 00:00:00 2001 From: Zhenfeng Liu Date: Fri, 31 Mar 2023 16:14:10 -0700 Subject: [PATCH] update genome; update schema --- conf/igenome.config | 11 +++++++---- nextflow_schema.json | 29 +++++++++++++---------------- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/conf/igenome.config b/conf/igenome.config index 12d2d58..5c6bf49 100644 --- a/conf/igenome.config +++ b/conf/igenome.config @@ -1,13 +1,16 @@ params { genomes { hg38 { - index = 's3://zymo-filesystem/srv/pacinfo/BSBolt/hg38_indexFull_rrbs/' + index = 's3://aladdin-genomes/Homo_sapiens/UCSC/hg38/Sequence/BSBoltIndex/' } mm10 { - index = 's3://zymo-filesystem/srv/pacinfo/BSBolt/mm10_indexFull_rrbs/' + index = 's3://aladdin-genomes/Mus_musculus/UCSC/mm10/Sequence/BSBoltIndex/' } - hg38_testdata { - index = 's3://zymo-filesystem/srv/pacinfo/BSBolt/DB_index_test/' + hg38_dev { + index = 's3://zymo-filesystem/srv/bioinformatics/BSBolt_index/hg38/' + } + mm10_dev { + index = 's3://zymo-filesystem/srv/bioinformatics/BSBolt_index/mm10/' } } } \ No newline at end of file diff --git a/nextflow_schema.json b/nextflow_schema.json index ff25231..c9709ce 100644 --- a/nextflow_schema.json +++ b/nextflow_schema.json @@ -1,7 +1,7 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://raw.githubusercontent.com/Zymo-Research/nxf-bisulfitebolt/master/nextflow_schema.json", - "title": "Zymo-Research/nxf-bisulfitebolt pipeline parameters", + "$id": "https://raw.githubusercontent.com/Zymo-Research/aladdin-bisulfitebolt/main/nextflow_schema.json", + "title": "Zymo-Research/aladdin-bisulfitebolt pipeline parameters", "description": "Bisulfitebolt analysis pipeline, part of the Aladdin Bioinformatics Platform pipeline catalog.", "type": "object", "custom_request": true, @@ -42,11 +42,8 @@ "genome": { "type": "string", "description": "Reference genome used to align reads.", - "hidden": false, - "advanced": false, "enum": ["hg38", - "mm10", - "hg38_testdata"] + "mm10"] } }, "required": [ @@ -61,19 +58,19 @@ "adapter_first_read": { "type": "string", "description": "Sequence of an adapter ligated to the 3' end (paired data: of the first read). The adapter and subsequent bases are trimmed.", - "hidden": true, + "advanced": true, "default": "AGATCGGAAGAGCACACGTCTGAACTCCAGTCA" }, "adapter_second_read": { "type": "string", "description": "3' adapter to be removed from second read in a pair", - "hidden": true, + "advanced": true, "default": "AGATCGGAAGAGCGTCGTGTAGGGAAAGAGTGT" }, "minimum_length": { "type": "integer", - "description": "Discard reads shorter than LEN. Default: 1", - "hidden": true, + "description": "Discard reads shorter than this.", + "advanced": true, "minimum": 1, "default": 1 }, @@ -100,27 +97,27 @@ "base_quality": { "type": "integer", "description": "minimum base quality", - "hidden": true, + "advanced": true, "default": 10 }, "alignment_quality": { "type": "integer", "description": "minimum alignment quality", - "hidden": true, + "advanced": true, "minimum": 10, "default": 20 }, "max_read_depth": { "type": "integer", - "description": "max read depth to call methylation [8000]", - "hidden": true, + "description": "max read depth to call methylation", + "advanced": true, "minimum": 100, "default": 8000 }, "minimum_read_depth": { "type": "integer", - "description": "minimum read depth required to report methylation site [10]", - "hidden": true, + "description": "minimum read depth required to report methylation site", + "advanced": true, "minimum": 10, "default": 10 }