70717273747576
* @param mode the mode of this trie */ public DBSeqTrieBag(final String fileName) { super(); this.fileName = fileName; this.nodeManager = new SeqNodeManager(fileName); }
67686970717273
* @param mode the mode of this trie */ public DBSeqTrieSet(final String fileName) { super(); this.fileName = fileName; this.nodeManager = new SeqNodeManager(fileName); }