diff --git a/README.md b/README.md
index 6b35cab..6b1eb0d 100644
--- a/README.md
+++ b/README.md
@@ -21,7 +21,7 @@ http://metagenomics.github.io/MeRaGENE/
6. type in `"curl -fsSL get.nextflow.io | bash"` to download nextflow into this folder
7. make sure that the binaries stated in the **Requirements** section below are installed on your machine
8. after nextflow is downloaded, replace all the `"YOUR_***"` parts in the following command with your own paths
- - `"./nextflow run main.nf --genome="YOUR_FAA_FILE_OF_A_METAGENOME" --ncbi="YOUR_BLAST-DB" --input="YOUR_INPUT-HMM_FOLDER" --output="YOUR_OUTPUT-FOLDER" --cov="COVERAGE_FILES" --keywords="YOUR_KEYWORD-FILE"`
+ - `"./nextflow run main.nf --genome="YOUR_FAA_FILE_OF_A_METAGENOME" --ncbi="YOUR_BLAST-DB" --input="YOUR_INPUT-HMM_FOLDER" --output="YOUR_OUTPUT-FOLDER" --bam="READ_ASSEMBLY_ALIGNMENT" --keywords="YOUR_KEYWORD-FILE"`
9. after replacing everything, run your command
10. that's it ! The pipeline is running and crunching your data. Look for the overview.txt or. overview_new.txt in your output folder after the pipeline is finished
- if you have further questions:
@@ -43,7 +43,6 @@ http://metagenomics.github.io/MeRaGENE/
If you want/have to make further changes to your pipeline, here are all possibilities: [usage](usage.txt)
-
### Update MeRaGENE
If you have already MeRaGENE installed, just run
@@ -69,7 +68,7 @@ Where `type` can be `feature` or `fix` and `name` is a short description of the
Example: `feature/development-guide`
-Merge this branch by providing a pull request. Please update the [change log](CHANGELOG.md) before merging.
+Merge a branch by providing a pull request to a release/x.x.x branch. Please update the [change log](CHANGELOG.md) before merging.
### Development Scripts
diff --git a/features/data/test.bam.coverage.txt b/features/data/test.bam.coverage.txt
deleted file mode 100644
index 48f3382..0000000
--- a/features/data/test.bam.coverage.txt
+++ /dev/null
@@ -1 +0,0 @@
-250278:contig-5631000033 5587 749 20.0995167352783
diff --git a/features/nextflow.feature b/features/nextflow.feature
index 4901504..bca4b6a 100644
--- a/features/nextflow.feature
+++ b/features/nextflow.feature
@@ -9,18 +9,19 @@ Feature: Verification steps for bioPipeline
And the stdout should contain:
"""
USAGE
- nextflow run metagenomics/MeRaGENE [OPTIONAL_ARGUMENTS] (--genome --ncbi --input --output --cov )
+ nextflow run metagenomics/MeRaGENE [OPTIONAL_ARGUMENTS] (--genome --ncbi --input --output --bam )
"""
Scenario Outline: Run the pipeline with valid parameters
Given I copy the example data files:
| source | dest |
- | db.faa | db.faa |
+ | db.faa | db.faa |
| blast.db | blast.db |
| blast.db.phr | blast.db.phr|
| blast.db.psq | blast.db.psq|
| blast.db.pin | blast.db.pin|
- | test.bam.coverage.txt |test.bam.coverage.txt |
+ | test.bam | test.bam |
+ | test.bam.bai | test.bam.bai|
| search.yaml | search.yaml |
| keywords.txt | keywords.txt|
And I copy the example data directories:
@@ -38,7 +39,7 @@ Feature: Verification steps for bioPipeline
--hmm_press="hmmpress" \
\