Skip to content

Commit b7a0a97

Browse files
authored
Merge pull request #871 from dannon/standardize-to-workflows
Standardize terminology to 'workflow's
2 parents 6593da5 + 02fa74d commit b7a0a97

File tree

7 files changed

+25
-23
lines changed

7 files changed

+25
-23
lines changed

website/pages/about.vue

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
</h1>
88

99
<p class="text-lg text-gray-700 leading-relaxed mb-6">
10-
The Galaxy Workflows Library is a curated collection of ready-to-use, open-source analysis workflows
11-
designed to help researchers make progress quickly and reliably. Each workflow comes with sample datasets,
12-
clear documentation, and links to training materials to streamline learning and application.
10+
The Galaxy Workflow Library is a curated collection of ready-to-use, open-source analysis workflows designed
11+
to help researchers make progress quickly and reliably. Each workflow comes with sample datasets, clear
12+
documentation, and links to training materials to streamline learning and application.
1313
</p>
1414

1515
<p class="text-lg text-gray-700 leading-relaxed mb-10">
@@ -76,9 +76,9 @@
7676
<div class="md:w-1/2">
7777
<h2 class="text-3xl md:text-4xl font-bold mb-8 text-center">Join the community</h2>
7878
<p class="text-lg text-gray-700 mb-4">
79-
The Galaxy Workflows Library is an open, collaborative project, and we welcome contributions
80-
from the community. Whether you want to enhance existing workflows, report issues, or contribute
81-
new pipelines, your input is invaluable.
79+
The Galaxy Workflow Library is an open, collaborative project, and we welcome contributions from
80+
the community. Whether you want to enhance existing workflows, report issues, or contribute new
81+
workflows, your input is invaluable.
8282
</p>
8383
<p class="text-lg text-gray-700">
8484
Have questions or feedback? Connect via
@@ -138,16 +138,16 @@ const baseUrl = config.appUrl || (process.client ? window.location.origin : "htt
138138
139139
// Add SEO meta tags using the useSeoMeta composable
140140
useSeoMeta({
141-
title: "About the Galaxy Workflows Library",
141+
title: "About the Galaxy Workflow Library",
142142
description:
143143
"Learn about the IWC curated collection of peer-reviewed, ready-to-use Galaxy workflows for scientific analysis",
144-
ogTitle: "About the Galaxy Workflows Library",
144+
ogTitle: "About the Galaxy Workflow Library",
145145
ogDescription:
146146
"Discover a curated collection of ready-to-use, peer-reviewed Galaxy workflows for scientific analysis",
147147
ogImage: `${baseUrl}/iwc_logo.png`,
148148
ogType: "website",
149149
twitterCard: "summary",
150-
twitterTitle: "About the Galaxy Workflows Library",
150+
twitterTitle: "About the Galaxy Workflow Library",
151151
twitterDescription:
152152
"Discover a curated collection of ready-to-use, peer-reviewed Galaxy workflows for scientific analysis",
153153
twitterImage: `${baseUrl}/iwc_logo.png`,

website/pages/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ function selectWorkflow(workflow: Workflow) {
164164
<input
165165
v-model="searchQuery"
166166
type="text"
167-
placeholder="Search pipelines"
167+
placeholder="Search workflows"
168168
class="w-full p-2 mb-2 border rounded-lg" />
169169
</div>
170170
<Filters />

website/pages/workflow/[id].vue

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import Author from "~/components/Author.vue";
77
import { useWorkflowStore } from "~/stores/workflows";
88
import { formatDate } from "~/utils/";
99
import GalaxyInstanceSelector from "~/components/GalaxyInstanceSelector.vue";
10-
import { stringify } from 'yaml'
10+
import { stringify } from "yaml";
1111
1212
const route = useRoute();
1313
const appConfig = useAppConfig();
@@ -104,11 +104,11 @@ const tools = computed(() => {
104104
});
105105
106106
const workflow_job_input = computed(() => {
107-
const config_init_command = `planemo workflow_job_init ${ workflow?.value?.iwcID }.ga -o ${ workflow?.value?.iwcID }-job.yml`;
107+
const config_init_command = `planemo workflow_job_init ${workflow?.value?.iwcID}.ga -o ${workflow?.value?.iwcID}-job.yml`;
108108
if (!workflow.value || !workflow.value || !workflow.value.workflow_job_input) {
109-
return `# config file: ${ workflow?.value?.iwcID }_job.yml file\n${ config_init_command }`;
109+
return `# config file: ${workflow?.value?.iwcID}_job.yml file\n${config_init_command}`;
110110
} else {
111-
return `# config file: ${ workflow?.value?.iwcID }_job.yml\n# command: ${ config_init_command }\n${stringify(workflow.value.workflow_job_input)}`;
111+
return `# config file: ${workflow?.value?.iwcID}_job.yml\n# command: ${config_init_command}\n${stringify(workflow.value.workflow_job_input)}`;
112112
}
113113
});
114114
@@ -394,11 +394,13 @@ planemo test {{ workflow?.iwcID }}.ga</code></pre>
394394
</div>
395395

396396
<div class="mb-6">
397-
<h4 class="text-lg font-medium mb-2">
398-
Step 4: Create workflow job file
399-
</h4>
400-
<p class="mb-2 text-sm">Create a workflow job file with your input parameters and update the values to match your environment and run:</p>
401-
<pre class="p-3 rounded overflow-x-auto"><code>{{ workflow_job_input }}</code></pre>
397+
<h4 class="text-lg font-medium mb-2">Step 4: Create workflow job file</h4>
398+
<p class="mb-2 text-sm">
399+
Create a workflow job file with your input parameters and update the
400+
values to match your environment and run:
401+
</p>
402+
<pre
403+
class="p-3 rounded overflow-x-auto"><code>{{ workflow_job_input }}</code></pre>
402404
</div>
403405
<div class="mb-6">
404406
<h4 class="text-lg font-medium mb-2">
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Standardized pipelines for retrieving and processing scientific datasets from repositories such as the
1+
Standardized workflows for retrieving and processing scientific datasets from repositories such as the
22
Sequence Read Archive (SRA). These workflows include data validation, format conversion, and quality
33
control steps to prepare raw data for downstream computational analysis.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Bioinformatic pipelines for characterizing genomic elements in assembled sequences. These workflows
1+
Bioinformatic workflows for characterizing genomic elements in assembled sequences. These workflows
22
incorporate gene prediction algorithms, homology-based annotation methods, and specialized tools for
33
identifying functional elements including protein-coding genes and non-coding RNA transcripts.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Sequencing data analysis pipelines for characterizing microbial communities. These workflows include
1+
Sequencing data analysis workflows for characterizing microbial communities. These workflows include
22
methods for taxonomic profiling, pathogen identification, and comparative analysis of microbiome
33
composition across different environmental conditions or host phenotypes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
RNA sequencing analysis pipelines for gene expression profiling. These workflows include quality
1+
RNA sequencing analysis workflows for gene expression profiling. These workflows include quality
22
assessment, read alignment, transcript quantification, and statistical methods for differential
33
expression analysis applicable to various RNA-seq experimental designs.

0 commit comments

Comments
 (0)