[Seqan-dev] using appendValue for local parallel and join it


Hello again, it's me fadhlan.

i have another idea for using appendValue for local in parallel, and after parallel done i join them using appendValue, but i got error.

so the program is like this

StringSet<DnaString> SpectrumLocal[thread]
StringSet<DnaString> Spectrum

// example parallel for start to finish, the value ex:"ACGT"
for start to finish
     appendValue(SpectrumLocal[id], value)

//join them
for i to thread
     appendValue(Spectrum, SpectrumLocal[i])

well, i get error about it.
can i get another way to join all SpectrumLocal to Spectrum? 

thanks,
best regard.