From ec0bb7c1678f32d9b0673daea242332003cfc41c Mon Sep 17 00:00:00 2001 From: xgrand <xavier.grand@ens-lyon.fr> Date: Mon, 16 Sep 2024 11:24:58 +0200 Subject: [PATCH] README.md modif --- README.md | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8282b89..9472dcd 100755 --- a/README.md +++ b/README.md @@ -16,6 +16,9 @@ The pipeline `src/bolero.nf` works a nextflow configuration file `src/nextflow.c The typical command for running the pipeline is as follows: `nextflow ./src/bolero.nf -c ./src/nextflow.config -profile singularity` +The typical command to obtain help: +`nextflow ./src/bolero.nf --help` + The arguments of this pipeline are described in the table below: | Arguments | Description | @@ -37,6 +40,31 @@ The arguments of this pipeline are described in the table below: | --chunks_size [int] | Chunck size, default = 1900 (refer to guppy manual). | | --help --h | Display this help message. | +## Test Bolero + +1. simulate 5'RACE sequenced reads: +Require pbsim3 software: https://github.com/yukiteruono/pbsim3 + +To produce a complete transcriptome you can run: +``` +mkdir -p 01_basecalling +for i in $(seq 1 30) +do + extract=$(cut -f1 expression.transcript_${i}) + mkdir 01_basecalling/${extract} + pbsim --strategy trans --transcript expression.transcript_${i} --id-prefix ${extract} --method errhmm --errhmm <PATH_TO_pbsim3>/data/ERRHMM-ONT.model + mv sd.fastq 01_basecalling/${extract}/${extract}.fastq + mv sd.maf 01_basecalling/${extract}/${extract}.maf + gzip 01_basecalling/${extract}/${extract}.fastq +done +``` + +2. run Bolero: +``` +cd <PATH_TO_Bolero> +nextflow ./src/bolero.nf -c ./src/nextflow.config -profile <PROFILE> --input 01_basecalling +``` + ## Reference sequence The HBV reference sequence, genotype D ayw, is available in "data" folder. @@ -51,9 +79,10 @@ If you want to add more tools to this project, please read the [CONTRIBUTING.md] * **Alia Rifki** - *Contributor* ## License - +[Info](#){.btn .btn-info} This project is licensed under the CeCiLL License- see the [LICENSE](LICENSE) file for details. +[Warning](#){.btn .btn-warning} The optional basecalling and demultiplexing steps may be carried out if necessary but are not executed automatically. To execute these steps, it is essential to adhere to the guidelines provided with the Guppy software from Oxford Nanopore Technologies. -- GitLab