Ludovic PLATON

Update README.md

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