forked from LiuLabUB/HMMRATAC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (40 loc) · 1.02 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
plugins {
id 'java'
id 'application'
}
jar {
manifest {
attributes('Main-Class': 'HMMR_ATAC.Main_HMMR_Driver')
}
}
repositories {
flatDir {
dirs 'ThirdPartyJARS/'
}
}
dependencies {
implementation 'be.ac.ulg.montefiore.run.jahmm:jahmm:0.6.1'
implementation 'org.apache.commons:commons-math3:3.5'
implementation 'net.sourceforge:javaml:0.1.7'
implementation 'net.sf.samtools:sam:1.97'
implementation 'org.broad.igv:BigWig'
}
group = 'HMMRATAC'
version = '1.2.10'
description = """Hidden Markov Model for ATAC-seq"""
application {
mainClassName = 'HMMR_ATAC.Main_HMMR_Driver'
}
task execJar(type: Jar) {
manifest {
attributes "Main-Class": "HMMR_ATAC.Main_HMMR_Driver"
}
archiveBaseName = "HMMRATAC"
archiveClassifier = "exec"
archiveVersion = "snapshot"
doFirst {
from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
}
exclude 'META-INF/*.RSA', 'META-INF/*.SF','META-INF/*.DSA'
with jar
}