Skip to content

Commit 7820346

Browse files
authored
Update README.md
1 parent 8d11010 commit 7820346

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Diff for: README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# SQL DB plugin for Nextflow
22

3-
This plugin provider an extension to implement built-in support for SQL DB access and manipulation in Nextflow scripts.
3+
This plugin provides an extension to implement built-in support for SQL DB access and manipulation in Nextflow scripts.
44

5-
It provides the ability to create Nextflow channel from SQL queries and to populate database tables. The current version
5+
It provides the ability to create a Nextflow channel from SQL queries and to populate database tables. The current version
66
provides out-of-the-box support for the following databases:
77

88
* [H2](https://www.h2database.com)
@@ -24,7 +24,7 @@ plugins {
2424
}
2525
```
2626
27-
The above declaration allow the use of the SQL plugin functionalities in your Nextflow pipelines. See the section
27+
The above declaration allows the use of the SQL plugin functionalities in your Nextflow pipelines. See the section
2828
below to configure the connection properties with a database instance.
2929

3030
## Configuration
@@ -59,11 +59,11 @@ using `demo` schema, with `my-name` and `my-password` as credentials.
5959

6060
## Available operations
6161

62-
This plugin adds to the Nextflow DSL the following extensions that allows performing query and populate database tables.
62+
This plugin adds to the Nextflow DSL the following extensions that allows performing of queries and populating database tables.
6363

6464
### fromQuery
6565

66-
The `fromQuery` factory method allows performing a query against a SQL database and creating a Nextflow channel emitting
66+
The `fromQuery` factory method allows for performing a query against a SQL database and creating a Nextflow channel emitting
6767
a tuple for each row in the corresponding result set. For example:
6868

6969
```
@@ -130,6 +130,6 @@ To query this file in a Nextflow script use the following snippet:
130130
```
131131

132132

133-
The `CSVREAD` function provided by the H2 database engine allows the access of a CSV file in your computer file system,
133+
The `CSVREAD` function provided by the H2 database engine allows access of a CSV file in your computer file system,
134134
you can replace `test.csv` with a CSV file path of your choice. The `foo>=2` condition shows how to define a filtering
135135
clause using the conventional SQL WHERE constrains.

0 commit comments

Comments
 (0)