Skip to content
Snippets Groups Projects
Commit 74ba567c authored by Rohmer Coralie's avatar Rohmer Coralie
Browse files

Renaming

parent 6fa40ed0
No related branches found
No related tags found
No related merge requests found
...@@ -21,7 +21,7 @@ Run a test to verify proper operation: ...@@ -21,7 +21,7 @@ Run a test to verify proper operation:
To start the analysis pipeline: To start the analysis pipeline:
```bash ```bash
Usage: Usage:
msa-limite.py -i <file_reads> -r <file_ref> [-options] msa-limit.py -i <file_reads> -r <file_ref> [-options]
Arguments: Arguments:
required: required:
...@@ -55,14 +55,14 @@ Arguments: ...@@ -55,14 +55,14 @@ Arguments:
-h -h
help help
Ex: ./msa-limite.py -i reads.fastq -r ref.fasta -b 1,150 -n exp -d 10,100 -s 100,200 -t 50,75 -m mafft,poa Ex: ./msa-limit.py -i reads.fastq -r ref.fasta -b 1,150 -n exp -d 10,100 -s 100,200 -t 50,75 -m mafft,poa
``` ```
#### Others modes #### Others modes
There are other features than the basic one for msa-limit: There are other features than the basic one for msa-limit:
```bash ```bash
Usage: Usage:
msa-limite.py -i <file_reads> -r <file_ref> [-options] msa-limit.py -i <file_reads> -r <file_ref> [-options]
Other modes: Other modes:
test test
......
...@@ -5,8 +5,8 @@ from datetime import datetime ...@@ -5,8 +5,8 @@ from datetime import datetime
def usage(): def usage():
print("msa-limit: Launch the MSA analysis pipeline\n", print("msa-limit: Launch the MSA analysis pipeline\n",
"Usage:", "Usage:",
'msa-limite.py -i <file_reads> -r <file_ref> [-options]', 'msa-limit.py -i <file_reads> -r <file_ref> [-options]',
'msa-limite.py [mode]\n', 'msa-limit.py [mode]\n',
"Arguments: ", "Arguments: ",
" required:", " required:",
" -i <string>", " -i <string>",
...@@ -38,7 +38,7 @@ def usage(): ...@@ -38,7 +38,7 @@ def usage():
" MSA software(s) to run", " MSA software(s) to run",
" -h", " -h",
" help", " help",
"\nEx: ./msa-limite.py -i reads.fastq -r ref.fasta -b 1,15000 -n exp -d 10,100 -s 100,200 -t 50,75 -m mafft,poa", "\nEx: ./msa-limit.py -i reads.fastq -r ref.fasta -b 1,15000 -n exp -d 10,100 -s 100,200 -t 50,75 -m mafft,poa",
"\nOther modes: ", "\nOther modes: ",
" test ", " test ",
" Launches a pipeline test", " Launches a pipeline test",
...@@ -113,7 +113,7 @@ def run_config(): ...@@ -113,7 +113,7 @@ def run_config():
path_config = sys.argv[2] path_config = sys.argv[2]
except: except:
print("ERROR: The configuration file(s) is missing.") print("ERROR: The configuration file(s) is missing.")
print("Usage: msa_limite.py run_config <path config file>.") print("Usage: msa_limit.py run_config <path config file>.")
sys.exit() sys.exit()
i=2 i=2
end_files = 0 end_files = 0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment