Update count.go

This commit is contained in:
kuoi 2022-01-15 11:21:40 +00:00 committed by GitHub
parent 741237d024
commit ecc06d6a8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ func fas_sum() []dna {
sum := []dna{}
for i, f := range file_input {
sum = append(sum, fas_parser(f))
fmt.Println("[ working A ]", i+1, f)
fmt.Println("[ Reading ]", i+1, f)
}
return sum
}
@ -31,7 +31,7 @@ func fas_count(sum_nex []dna) []charset {
f = fas_charset[k-1].To + 1
}
t := f + v.count - 1
fmt.Println("[ working B ]", n, f, t)
fmt.Println("[ Combining ]", n, f, t)
new_charset := charset{n, f, t}
fas_charset = append(fas_charset, new_charset)
}