diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a98f0ad..87626df 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -8,7 +8,7 @@ repos: always_run: true pass_filenames: false additional_dependencies: - - epi2melabs==0.0.55 + - epi2melabs==0.0.56 - id: build_models name: build_models entry: datamodel-codegen --strict-nullable --base-class workflow_glue.results_schema_helpers.BaseModel --use-schema-description --disable-timestamp --input results_schema.yml --input-file-type openapi --output bin/workflow_glue/results_schema.py diff --git a/README.md b/README.md index 650428e..7c5c9a4 100644 --- a/README.md +++ b/README.md @@ -76,6 +76,7 @@ the following command: ``` nextflow pull epi2me-labs/wf-transcriptomes ``` + A demo dataset is provided for testing of the workflow. It can be downloaded and unpacked using the following commands: ``` @@ -97,6 +98,7 @@ nextflow run epi2me-labs/wf-transcriptomes \ --sample_sheet 'wf-transcriptomes-demo/sample_sheet.csv' \ -profile standard ``` + For further information about running a workflow on the command line see https://labs.epi2me.io/wfquickstart/ diff --git a/bin/workflow_glue/check_bam_headers_in_dir.py b/bin/workflow_glue/check_bam_headers_in_dir.py index 58be937..44e689b 100755 --- a/bin/workflow_glue/check_bam_headers_in_dir.py +++ b/bin/workflow_glue/check_bam_headers_in_dir.py @@ -60,6 +60,6 @@ def main(args): def argparser(): """Argument parser for entrypoint.""" - parser = wf_parser("check_bam_headers") + parser = wf_parser("check_bam_headers_in_dir") parser.add_argument("input_path", type=Path, help="Path to target directory") return parser diff --git a/bin/workflow_glue/check_xam_index.py b/bin/workflow_glue/check_xam_index.py index 4d027d2..3beae14 100755 --- a/bin/workflow_glue/check_xam_index.py +++ b/bin/workflow_glue/check_xam_index.py @@ -38,6 +38,6 @@ def main(args): def argparser(): """Argument parser for entrypoint.""" - parser = wf_parser("check_bam_headers") + parser = wf_parser("check_xam_index") parser.add_argument("input_xam", type=Path, help="Path to target XAM") return parser diff --git a/bin/workflow_glue/get_max_depth_locus.py b/bin/workflow_glue/get_max_depth_locus.py index eaa216d..b873ea9 100755 --- a/bin/workflow_glue/get_max_depth_locus.py +++ b/bin/workflow_glue/get_max_depth_locus.py @@ -49,7 +49,7 @@ def main(args): def argparser(): """Argument parser for entrypoint.""" - parser = wf_parser("check_bam_headers") + parser = wf_parser("get_max_depth_locus") parser.add_argument( "depths_bed", type=Path, diff --git a/docs/04_install_and_run.md b/docs/04_install_and_run.md index 57b482c..ee6bee4 100644 --- a/docs/04_install_and_run.md +++ b/docs/04_install_and_run.md @@ -36,6 +36,7 @@ the following command: ``` nextflow pull epi2me-labs/wf-transcriptomes ``` + A demo dataset is provided for testing of the workflow. It can be downloaded and unpacked using the following commands: ``` @@ -57,5 +58,6 @@ nextflow run epi2me-labs/wf-transcriptomes \ --sample_sheet 'wf-transcriptomes-demo/sample_sheet.csv' \ -profile standard ``` + For further information about running a workflow on the command line see https://labs.epi2me.io/wfquickstart/