Ludovic PLATON

Update README.md

...@@ -38,14 +38,14 @@ make ...@@ -38,14 +38,14 @@ make
38 ## Train a model 38 ## Train a model
39 Default usage: 39 Default usage:
40 ``` bash 40 ``` bash
41 -python scripts/train.py --featurer=${path_IRSOM}/bin/featurer -c coding.fasta -n noncoding.fasta --output=output_dir_of_model 41 +python scripts/train.py --featurer=${path_IRSOM}/bin/Featurer -c coding.fasta -n noncoding.fasta --output=output_dir_of_model
42 ``` 42 ```
43 43
44 The use of multiple fasta files are allowed with this script. 44 The use of multiple fasta files are allowed with this script.
45 For example, we can create a model with 2 coding fasta files and 3 non-coding fasta files with the following command: 45 For example, we can create a model with 2 coding fasta files and 3 non-coding fasta files with the following command:
46 46
47 ``` bash 47 ``` bash
48 -python scripts/train.py --featurer=${path_IRSOM}/bin/featurer -c coding1.fasta -c coding2.fasta -n noncoding1.fasta -n noncoding2.fasta -n noncoding3.fasta 48 +python scripts/train.py --featurer=${path_IRSOM}/bin/Featurer -c coding1.fasta -c coding2.fasta -n noncoding1.fasta -n noncoding2.fasta -n noncoding3.fasta
49 ``` 49 ```
50 50
51 The model parameters can be set by the command parameters: 51 The model parameters can be set by the command parameters:
......