bash $GOBY_HOME/goby 16g ser \
$1 \
-o $2
$1 - input bam file
$2 - basename for resulting compact read file
bash $GOBY_HOME/goby 16g stc \
-i $1 \
-o $2 \
-g $3 \
-q $4 \
--propagate-query-ids \
-x AlignmentWriterImpl:permutate-query-indices=false \
-x SAMToCompactMode:ignore-read-origin=false \
-x MessageChunksWriter:codec=hybrid-1 \
-x AlignmentCollectionHandler:enable-domain-optimizations=true \
-x MessageChunksWriter:compressing-codec=true
$1 - input bam file
$2 - basename for output compact file(s)
$3 - genome (in compact format)
$4 - reads file from previous step
Stats for the compact file and first 100 lines of the input and output bams (in sam format) are attached.
My expectation was that the output bam will restore lossless, with missing (duplicate) information restored from genome (exact matching reads) and reads file (non-exact + qualities + attributes).
I know I'm doing something wrong since the stats for the compact file does not contain a reference to the reads file (so it makes sense it will not be consulted on the way back - on the compact-to-sam).
As you can see, the qualities and attributes (at least) are not being restored from the reads file.
Can you please advise?
Thanx in advance.