Open jiadong324 opened 12 months ago
Hi, which version are you using?
I think that you have to rerun the search
step using the --assemble
argument. We always run the caller on "assembled" SFSs and the caller looks for solution_batch_*.assembled.sfs
files in the working directory and not simply solution_batch_*.sfs
. Then I also suggest to add --batches 22
to the call
command to set how many files to load (this is done automatically in the latest version but not on v1.0.5).
Let me know if this solve the issue. Unfortunately, I still haven't updated the conda recipe to the latest v2 but I updated the README on the repo.. Sorry if this created some confusion on how to run the tool.
Best,
Hi,
I am using v1.0.5. Based on your suggestion, I think that I get the correct output, which is svs_poa.vcf
.
Thanks!
Looking forward to v2.0, it's important to set --batches
automatically. BTW, please also update your snakemake file.
Thanks!
Yes, for example
{SVDSS_BIN} smooth --reference {input.fa} --bam {input.bam} --threads {threads} > {output.bam}
It dose not write into standard output, but to your working directory. This is what I used:
SVDSS smooth --reference {ref} --bam {input.bam} --threads {threads} --workdir $( dirname {output.bam} )
Moreover, is that possible to remove the temp results like poa.sam
, clusters.txt
and etc. They take quite large space if I run for hundreds of samples.
This snakefile (the one I linked in my previous message) is for SVDSS2. SVDSS2 prints to stdout. And it shouldn't create the temp files by default.
SVDSS1 writes files to the working directory and it creates the temp files. The snakemake for v1 is this one.
Can you please double check that you are using the correct version of SVDSS with the correct Snakefile? Unfortunately v1 and v2 are incompatible.
I'd suggest to use v2 (last alpha) if you don't want the temp files to be stored.
Dear author,
Firstly, I got 22
sfs
files after runningSVDSS search --index ./hg38.fmd --workdir ./HG00733/ --bam HG00733/smoothed.selective.bam
. Each of thesfs`` file is named as
solutionbatch*.sfs``` and contains some information for each reads.Then, I run
SVDSS call --min-sv-length 50 --workdir ./HG00733 --bam ./HG00733/smoothed.selective.bam --reference ./hg38.no_alt.fa
. I got the following output:There are a number of similar information as shown above. The final output I have is listed below:
Looking forward to your reply!
Thanks!