You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nextflow launch form - Add a new parameter named "InputDataPattern" field.
1) Validate the outdatalocation param which consists of s3 else localpath accordingly prefix the s3:// in the OutputDataLocation
2) Nextflow launch form - Add a new parameter named "InputDataPattern" field.
3) Help text has changed for InputDataLocation and InputDataPattern
This template shows how to associate an Elastic IP address with an Amazon EC2 instance
4
5
- you can use this same technique to associate an EC2 instance with an Elastic IP
5
6
Address that is not created inside the template by replacing the EIP reference in
6
7
the AWS::EC2::EIPAssoication resource type with the IP address of the external EIP.
7
8
**WARNING** This template creates an Amazon EC2 instance and an Elastic IP Address.
8
9
You will be billed for the AWS resources used if you create a stack from this template.'
10
+
9
11
Metadata:
10
12
AWS::CloudFormation::Interface:
11
13
ParameterGroups:
@@ -14,7 +16,8 @@ Metadata:
14
16
Parameters:
15
17
- PipelineName
16
18
- PipelineContainer
17
-
- InputDataLocation
19
+
- InputDataLocation
20
+
- InputDataPattern
18
21
- OutputDataLocation
19
22
- Label:
20
23
default: Head Node Configuration
@@ -37,6 +40,7 @@ Metadata:
37
40
- ProjectId
38
41
ALB: true
39
42
ProductName: nextflow
43
+
40
44
Parameters:
41
45
VpcId:
42
46
Type: AWS::EC2::VPC::Id
@@ -50,18 +54,22 @@ Parameters:
50
54
Default: 16
51
55
PipelineContainer:
52
56
Type: String
53
-
Default: nextflow/rnaseq-nf:latest
54
57
Description: Public Docker container image of the pipeline to be executed. If you are using a custom pipeline, ensure that the custom container image is publicly available on Docker Hub
55
58
InputDataLocation:
56
59
Description: >-
57
60
An S3 bucket which holds input data for the Nextflow pipeline. The bucket name must respect the S3 bucket naming conventions
58
61
(can contain lowercase letters, numbers, periods and hyphens).
59
-
Type: String
62
+
Type: String
63
+
InputDataPattern:
64
+
Description: >-
65
+
The pattern to match samples to be processed as inputs to the pipeline. E.g. data/ggal/*_{1,2}.fq. It can also point to a csv or tsv file that contains details of the files to be processed.
66
+
Type: String
67
+
Default: samplesheet.csv
60
68
OutputDataLocation:
61
69
Description: >-
62
70
The full path on the local disk where outputs of the pipeline should be stored. The default path above will enable you to view the outputs via the browser. The path should be accessible to the user ec2-user.
63
71
Alternately, provide an S3 bucket for storing analysis results. The bucket name must respect the S3 bucket naming conventions
64
-
(can contain lowercase letters, numbers, periods and hyphens). Eg: s3://<BucketName>
72
+
(can contain lowercase letters, numbers, periods and hyphens).
65
73
Default: /home/ec2-user/nextflow/outputs/
66
74
Type: String
67
75
ComputeEnvMinvCpus:
@@ -111,16 +119,35 @@ Parameters:
111
119
Type: String
112
120
ProjectId:
113
121
Type: String
122
+
Namespace:
123
+
Type: String
124
+
Description: An environment name that will be prefixed to resource names
125
+
S3Mounts:
126
+
Type: String
127
+
Description: A JSON array of objects with name, bucket, and prefix properties used to mount data
128
+
IamPolicyDocument:
129
+
Type: String
130
+
Description: The IAM policy to be associated with the launched workstation
131
+
EnvironmentInstanceFiles:
132
+
Type: String
133
+
Description: >-
134
+
An S3 URI (starting with "s3://") that specifies the location of files to be copied to
135
+
the environment instance, including any bootstrap scripts
0 commit comments