Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
A
astrocyte_example_wordcount
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
BioHPC
astrocyte_example_wordcount
Commits
d94d1445
Commit
d94d1445
authored
Aug 04, 2016
by
David Trudgian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UNIX LF for yml
parent
b4a4e73c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
110 additions
and
110 deletions
+110
-110
astrocyte_pkg.yml
astrocyte_pkg.yml
+110
-110
No files found.
astrocyte_pkg.yml
View file @
d94d1445
#
#
# metadata for the example astrocyte ChipSeq workflow package
# metadata for the example astrocyte ChipSeq workflow package
#
#
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
# BASIC INFORMATION
# BASIC INFORMATION
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
# A unique identifier for the workflow package, text/underscores only
# A unique identifier for the workflow package, text/underscores only
name
:
'
example_wordcount'
name
:
'
example_wordcount'
# Who wrote this?
# Who wrote this?
author
:
'
David
Trudgian'
author
:
'
David
Trudgian'
# A contact email address for questions
# A contact email address for questions
email
:
'
biohpc-help@utsouthwestern.edu'
email
:
'
biohpc-help@utsouthwestern.edu'
# A more informative title for the workflow package
# A more informative title for the workflow package
title
:
'
Example
Wordcount
Workflow'
title
:
'
Example
Wordcount
Workflow'
# A summary of the workflow package in plain text
# A summary of the workflow package in plain text
description
:
|
description
:
|
This is a minimal test workflow package that counts the occurences of words
This is a minimal test workflow package that counts the occurences of words
in a test file. It can be used as a template to develop workflows, and as to
in a test file. It can be used as a template to develop workflows, and as to
test the astrocyte platform.
test the astrocyte platform.
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
# DOCUMENTATION
# DOCUMENTATION
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
# A list of documentation file in .md format that should be viewable from the
# A list of documentation file in .md format that should be viewable from the
# web interface. These files are in the 'docs' subdirectory. The first file
# web interface. These files are in the 'docs' subdirectory. The first file
# listed will be used as a documentation index and is index.md by convention
# listed will be used as a documentation index and is index.md by convention
# To supply a title for documentation use a pair of [ 'filename', 'title' ]
# To supply a title for documentation use a pair of [ 'filename', 'title' ]
documentation_files
:
documentation_files
:
-
[
'
index.md'
,
'
Wordcount
Help'
]
-
[
'
index.md'
,
'
Wordcount
Help'
]
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
# NEXTFLOW WORKFLOW CONFIGURATION
# NEXTFLOW WORKFLOW CONFIGURATION
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
# Remember - The workflow file is always named 'workflow/main.f'
# Remember - The workflow file is always named 'workflow/main.f'
# The workflow must publish all final output into $baseDir
# The workflow must publish all final output into $baseDir
# A list of clueter environment modules that this workflow requires to run.
# A list of clueter environment modules that this workflow requires to run.
# Specify versioned module names to ensure reproducability.
# Specify versioned module names to ensure reproducability.
workflow_modules
:
workflow_modules
:
-
Test
-
Test
# A list of parameters used by the workflow, defining how to present them,
# A list of parameters used by the workflow, defining how to present them,
# options etc in the web interface. For each parameter:
# options etc in the web interface. For each parameter:
#
#
# REQUIRED INFORMATION
# REQUIRED INFORMATION
# id: The name of the parameter in the NEXTFLOW workflow
# id: The name of the parameter in the NEXTFLOW workflow
# type: The type of the parameter, one of:
# type: The type of the parameter, one of:
# string - A free-format string
# string - A free-format string
# integer - An integer
# integer - An integer
# real - A real number
# real - A real number
# file - A single file from user data
# file - A single file from user data
# files - One or more files from user data
# files - One or more files from user data
# select - A selection from a list of values
# select - A selection from a list of values
# required: true/false, must the parameter be entered/chosen?
# required: true/false, must the parameter be entered/chosen?
# description: A user friendly description of the meaning of the parameter
# description: A user friendly description of the meaning of the parameter
#
#
# OPTIONAL INFORMATION
# OPTIONAL INFORMATION
# default: A default value for the parameter (optional)
# default: A default value for the parameter (optional)
# min: Minium value/characters/files for number/string/files types
# min: Minium value/characters/files for number/string/files types
# max: Maxumum value/characters/files for number/string/files types
# max: Maxumum value/characters/files for number/string/files types
# regex: A regular expression that describes valid entries / filenames
# regex: A regular expression that describes valid entries / filenames
#
#
# SELECT TYPE
# SELECT TYPE
# choices: A set of choices presented to the user for the parameter.
# choices: A set of choices presented to the user for the parameter.
# Each choice is a pair of value and description, e.g.
# Each choice is a pair of value and description, e.g.
#
#
# choices:
# choices:
# - [ 'myval', 'The first option']
# - [ 'myval', 'The first option']
# - [ 'myval', 'The second option']
# - [ 'myval', 'The second option']
#
#
# NOTE - All parameters are passed to NEXTFLOW as strings... but they
# NOTE - All parameters are passed to NEXTFLOW as strings... but they
# are validated by astrocyte using the information provided above
# are validated by astrocyte using the information provided above
workflow_parameters
:
workflow_parameters
:
-
id
:
story
-
id
:
story
type
:
files
type
:
files
required
:
true
required
:
true
description
:
|
description
:
|
A text file containing a story
A text file containing a story
regex
:
"
.*(txt)"
regex
:
"
.*(txt)"
min
:
1
min
:
1
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
# SHINY APP CONFIGURATION
# SHINY APP CONFIGURATION
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
# Remember - The vizapp is always 'vizapp/server.R' 'vizapp/ui.R'
# Remember - The vizapp is always 'vizapp/server.R' 'vizapp/ui.R'
# The workflow must publish all final output into $baseDir
# The workflow must publish all final output into $baseDir
# Name of the R module that the vizapp will run against
# Name of the R module that the vizapp will run against
vizapp_r_module
:
'
R/3.2.1-intel'
vizapp_r_module
:
'
R/3.2.1-intel'
# List of any CRAN packages, not provided by the modules, that must be made
# List of any CRAN packages, not provided by the modules, that must be made
# available to the vizapp
# available to the vizapp
vizapp_cran_packages
:
vizapp_cran_packages
:
-
shiny
-
shiny
-
shinyFiles
-
shinyFiles
# # List of any Bioconductor packages, not provided by the modules, that must be made
# # List of any Bioconductor packages, not provided by the modules, that must be made
# available to the vizapp
# available to the vizapp
vizapp_bioc_packages
:
vizapp_bioc_packages
:
-
chipseq
-
chipseq
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment