Skip to content
Snippets Groups Projects
Commit 61b371fa authored by aknecht2's avatar aknecht2
Browse files

Added a better 'any' file type

parent fc5d2dfa
Branches master
No related tags found
1 merge request!14Resolve "Enhance type strictness and parsing"
......@@ -39,7 +39,6 @@ peak_tools = [
# File extensions
file_extensions = {
"any": ["fastq", "fastq.gz", "bam"],
"genome_index": ["fa", "fna"],
"fastq": ["fastq", "fastq.gz"],
"sai": ["sai"],
......@@ -62,6 +61,7 @@ file_extensions = {
"ccat_conf": ["txt", "conf"],
"log": ["log"]
}
file_extensions["any"] = [extension for ext_list in file_extensions.values() for extension in ext_list]
# list of resources that can be specified per job (step) in
# the workflow and corresponding Pegasus profile info
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment