mirror of
https://github.com/metabarcoding/obitools4.git
synced 2025-06-29 16:20:46 +00:00
Code refactoring
This commit is contained in:
@ -169,8 +169,8 @@ func BuildQualityConsensus(seqA, seqB obiseq.BioSequence, path []int,
|
||||
qm = qA
|
||||
}
|
||||
if qB == qA {
|
||||
nuc := __four_bits_base_code__[sA[i]&31] | __four_bits_base_code__[sB[i]&31]
|
||||
consensus = append(consensus, __four_bits_base_decode__[nuc])
|
||||
nuc := _FourBitsBaseCode[sA[i]&31] | _FourBitsBaseCode[sB[i]&31]
|
||||
consensus = append(consensus, _FourBitsBaseDecode[nuc])
|
||||
}
|
||||
|
||||
q := qA + qB
|
||||
|
Reference in New Issue
Block a user