Skip to content

Commit 8d7dfd4

Browse files
authored
chore: fix wrong paths in container
1 parent 0667a87 commit 8d7dfd4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,15 @@ The process of generating an tumorized genome with genomic variants from an exis
5858

5959
First, split the input file into two files (_Normal_ and _Normal 2_ samples) using `AlignmentSplitter`. Assuming you have a singularity image called `genome-variator.sif`, following is an example of how to divide an 300X input CRAM file into two 30X CRAM files in a 16-core and 32 GiB RAM machine:
6060
```
61-
singularity exec genome-variator.sif python3 -O /GenomeVariator/src/alignment_splitter.py -i in_300X.cram -ic 300 -o splitted_ -oc 30 -sc 2 -p 16 -s 0
61+
singularity exec genome-variator.sif python3 -O /GenomeVariator/alignment_splitter.py -i in_300X.cram -ic 300 -o splitted_ -oc 30 -sc 2 -p 16 -s 0
6262
6363
mv splitted_0_30X_0 normal_30X.cram
6464
mv splitted_0_30X_1 normal_2_30X.cram
6565
```
6666

6767
Finally, add the variants to the second normal CRAM file using the `Tumorizer`:
6868
```
69-
singularity exec genome-variator.sif python3 -O /GenomeVariator/src/tumorizer/main.py -i normal_2_30X.cram -o tumor.cram -f ref.fa -v variants.vcf --vaf 0.5 -td results_tmp -p 16 -mm 32 -s 0
69+
singularity exec genome-variator.sif python3 -O /GenomeVariator/tumorizer/main.py -i normal_2_30X.cram -o tumor.cram -f ref.fa -v variants.vcf --vaf 0.5 -td results_tmp -p 16 -mm 32 -s 0
7070
```
7171
### Interface
7272

0 commit comments

Comments
 (0)