From a7ed4ef1c8b9ac4c1a8b18672b085408599ec3be Mon Sep 17 00:00:00 2001 From: Venkat Malladi <venkat.malladi@utsouthwestern.edu> Date: Fri, 15 Jun 2018 15:04:40 -0500 Subject: [PATCH] Fix tar.gz --- astrocyte_pkg.yml | 2 +- workflow/main.nf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/astrocyte_pkg.yml b/astrocyte_pkg.yml index 15d1931..c95f693 100644 --- a/astrocyte_pkg.yml +++ b/astrocyte_pkg.yml @@ -82,7 +82,7 @@ workflow_parameters: required: true description: | One or more input Tarball BCL files from a sequencing of 10x single-cell expereiment . - regex: ".*tar" + regex: ".*tar.gz" min: 1 - id: designFile diff --git a/workflow/main.nf b/workflow/main.nf index 18e01b0..b306f84 100644 --- a/workflow/main.nf +++ b/workflow/main.nf @@ -4,7 +4,7 @@ // Note - $baseDir is the location of this workflow file main.nf // Define Input variables -params.bcl = "$baseDir/../test_data/*.tar" +params.bcl = "$baseDir/../test_data/*.tar.gz" params.designFile = "$baseDir/../test_data/design.csv" -- GitLab