Indexer of FASTA.

(ns cljam.algo.fasta-indexer
  (:require [cljam.io.fasta-index.core :as fai-core]))

Creates a FASTA index file from the FASTA file.

(defn create-index
  [in-fa out-fai]
  (fai-core/create-index in-fa out-fai))