comprna/RATTLE

If -iso-score-threshold value is given, no Clustering.

jkbenotmane opened this issue · 2 comments

Hi, thanks in advance for helping !
I want to find the best setting for the clustering of only minor differing reads (Lymphocyte Receptor Arrangements).
Therefore i tried multiple settings of rattle cluster -iso-score-threshold but it seems like, that any value given to this option leads to no clusters found, even when giving explicitly the default value.
E.g.

${RATTLE_PATH}/rattle cluster \
>         -i 'IGB_CLUSTERS/TRB' \
>         -t ${THREADS} \
>         -o "${OUTDIR}"/CORRECTION/RATTLE_CLUSTERS \
>         --fastq 
RNA mode: 0
Reading fasta file... Done
[================================================================================] 636/636 (100%)28%)
[================================================================================] 292/292 (100%)75%)
Iteration 0.35 complete
[================================================================================] 278/278 (100%)03%)
Iteration 0.3 complete
[================================================================================] 269/269 (100%)83%)
Iteration 0.25 complete
[================================================================================] 264/264 (100%)12%)
Iteration 0.2 complete
[================================================================================] 254/254 (100%)63%)
Iteration 0 complete
Gene clustering done
213 gene clusters found

When giving explicitly the default value 0.3:

${RATTLE_PATH}/rattle cluster \
>         -i 'IGB_CLUSTERS/TRB' \
>         -t ${THREADS} \
>         -o "${OUTDIR}"/CORRECTION/RATTLE_CLUSTERS \
>         --fastq \
>         -iso-score-threshold 0.3
RNA mode: 0
Reading fasta file... Done
Iteration 0.35 complete
Iteration 0.3 complete
Iteration 0.25 complete
Iteration 0.2 complete
Iteration 0 complete
Gene clustering done
0 gene clusters found

What am I doing wrong ?

Hi Eduardo,

thank you for the quick response!
I actually did add --iso in another trial, but the issue was even easier.
I did miss the second "-" for long command-line option
Changing

-iso-score-threshold 0.3

to

--iso-score-threshold 0.3

Solved it.
Thank you and all the best!