From 0fa57840b1325dd5f08455a2b71e0d31eac1fa7f Mon Sep 17 00:00:00 2001 From: smvgarcia <111767892+smvgarcia@users.noreply.github.com> Date: Mon, 29 Apr 2024 15:00:18 -0500 Subject: [PATCH 1/6] Update nextflow-welcome.html update with clarifications, to add a link toe BRH documentation, and to add info about how to copy the nextflow config to /pd. --- jupyter-nextflow/nextflow-welcome.html | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/jupyter-nextflow/nextflow-welcome.html b/jupyter-nextflow/nextflow-welcome.html index 290c1fef..91405e33 100644 --- a/jupyter-nextflow/nextflow-welcome.html +++ b/jupyter-nextflow/nextflow-welcome.html @@ -39,16 +39,20 @@
If you are new to Nextflow, visit nextflow.io for detailed information. + href=https://www.nextflow.io>nextflow.io for detailed information. + You can also learn more about using Nextflow in BRH Workspace in the BRH Documentation .
This workspace is set up to run Nextflow workflows in AWS Batch. Your
- Nextflow configuration must include the Batch queue, IAM role ARN and work
- directory that were created for you automatically. The sample configuration
+ Nextflow configuration must include the Batch queue (in our config file,
+ queue
), IAM role ARN (jobRole
), and work
+ directory (workDir
) that were created for you automatically. The sample configuration
file will allow you to run simple workflows and can be adapted to your
needs. To get started:
nextflow-welcome.html
+ cp
@@ -56,4 +60,9 @@ Get started with Nextflow
- Launch a Hello World workflow by running this command in the terminal:
nextflow run hello
Since the /pd directory is the only directory that will allow files to persist
+ once the workspace is closed, if you make changes to your nextflow.config
file,
+ you may want to move or copy the nextflow.config to the /pd to retain your changes.
+ Move it to the /pd directory by running this command in the terminal: mv nextflow.config ./pd
+
nextflow run hello
- Since the /pd directory is the only directory that will allow files to persist
- once the workspace is closed, if you make changes to your nextflow.config
file,
- you may want to move or copy the nextflow.config to the /pd to retain your changes.
- Move it to the /pd directory by running this command in the terminal: mv nextflow.config ./pd
-
This workspace is set up to run Nextflow workflows in AWS Batch. Your
- Nextflow configuration must include the Batch queue (in our config file,
- queue
), IAM role ARN (jobRole
), and work
+ Nextflow configuration must include the Batch queue (in your config file,
+ process.queue
), IAM role ARN (aws.batch.jobRole
), and work
directory (workDir
) that were created for you automatically. The sample configuration
file will allow you to run simple workflows and can be adapted to your
needs. To get started:
From 22c5f30367637d7a0039f9987df2655c8d2c8ef6 Mon Sep 17 00:00:00 2001
From: smvgarcia <111767892+smvgarcia@users.noreply.github.com>
Date: Tue, 30 Apr 2024 11:27:09 -0500
Subject: [PATCH 4/6] Update jupyter-nextflow/nextflow-welcome.html
Co-authored-by: Pauline Ribeyre <4224001+paulineribeyre@users.noreply.github.com>
---
jupyter-nextflow/nextflow-welcome.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/jupyter-nextflow/nextflow-welcome.html b/jupyter-nextflow/nextflow-welcome.html
index d8bccd12..765f885d 100644
--- a/jupyter-nextflow/nextflow-welcome.html
+++ b/jupyter-nextflow/nextflow-welcome.html
@@ -47,7 +47,7 @@
process.queue
), IAM role ARN (aws.batch.jobRole
), and work
directory (workDir
) that were created for you automatically. The sample configuration
- file will allow you to run simple workflows and can be adapted to your
+ file is already configured with these settings. It will allow you to run simple workflows and can be adapted to your
needs. To get started:
This workspace is set up to run Nextflow workflows in AWS Batch. Your
Nextflow configuration must include the Batch queue (in your config file,
process.queue
), IAM role ARN (aws.batch.jobRole
), and work
- directory (workDir
) that were created for you automatically. The sample configuration
+ directory (workDir
) that were created for you automatically. The sample config
file is already configured with these settings. It will allow you to run simple workflows and can be adapted to your
needs. To get started:
nextflow.config
file to persist, first click on the "pd" folder.
+ nextflow.config
file to persist, first double-click on the "pd" folder.
nextflow-welcome.html
cp
- ./data/sample-nextflow-config.txt ./nextflow.config
+ ../data/sample-nextflow-config.txt ./nextflow.config
nextflow run hello