Skip to content
Permalink
542d513b02
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
15 lines (15 sloc) 764 Bytes
(defproject index-cluster-runner "0.1.0-SNAPSHOT"
:description "This program runs dnaclust on fastq index pairs"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/tools.logging "0.3.1"]
[org.apache.logging.log4j/log4j-api "2.5"]
[org.apache.logging.log4j/log4j-core "2.5"]
[org.apache.logging.log4j/log4j-1.2-api "2.5"]
[org.clojure/tools.cli "0.3.3"]]
:source-paths ["src/main/clojure" "classes"]
:java-source-paths ["src/main/clojure" "src/main/java"]
:main index-cluster-runner.core
:aot [index-cluster-runner.core])