From cb91b5434d4fffb5cc436dde829866f6f0eac3ad Mon Sep 17 00:00:00 2001 From: "Gervaise H. Henry" <gervaise.henry@utsouthwestern.edu> Date: Sat, 27 Apr 2019 17:49:09 -0500 Subject: [PATCH] Fix asrocyte regex for extension filtering --- astrocyte_pkg.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/astrocyte_pkg.yml b/astrocyte_pkg.yml index 8417664..f9f6408 100755 --- a/astrocyte_pkg.yml +++ b/astrocyte_pkg.yml @@ -84,13 +84,13 @@ workflow_parameters: required: true description: | Pairs (read1 and read2) of fastq.gz files from a sequencing of 10x single-cell expereiment. Index fastq not required. - regex: ".*fastq.gz" + regex: ".*\\.fastq.gz" min: 2 - id: designFile type: file required: true - regex: ".*csv" + regex: ".*\\.csv" description: | A design file listing sample, corresponding read1 filename, corresponding read2 filename. There can be multiple rows with the same sample name, if there are multiple fastq's for that sample. -- GitLab