Add a first version of obitag the successor of ecotag

This commit is contained in:
2022-10-26 13:16:56 +02:00
parent e17d1fbca6
commit 8aa323dad5
17 changed files with 884 additions and 5 deletions

View File

@ -0,0 +1,17 @@
package obiiter
// func MakeSetAttributeWorker(rank string) obiiter.SeqWorker {
// if !goutils.Contains(taxonomy.RankList(), rank) {
// log.Fatalf("%s is not a valid rank (allowed ranks are %v)",
// rank,
// taxonomy.RankList())
// }
// w := func(sequence *obiseq.BioSequence) *obiseq.BioSequence {
// taxonomy.SetTaxonAtRank(sequence, rank)
// return sequence
// }
// return w
// }