forked from broadinstitute/picard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
347 lines (297 loc) · 13.4 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
import org.gradle.internal.os.OperatingSystem
import javax.tools.ToolProvider
buildscript {
repositories {
mavenCentral()
}
}
plugins {
id "java"
id 'maven'
id 'signing'
id 'jacoco'
id 'application'
id 'com.palantir.git-version' version '0.5.1'
id 'com.github.johnrengelman.shadow' version '1.2.3'
id "com.github.kt3k.coveralls" version '2.6.3'
id 'org.ajoberstar.grgit' version '1.4.2'
id 'org.ajoberstar.github-pages' version '1.4.2'
}
mainClassName = "picard.cmdline.PicardCommandLine"
repositories {
mavenLocal()
mavenCentral()
maven {
url "https://artifactory.broadinstitute.org/artifactory/libs-snapshot/" //for htsjdk snapshots
}
}
jacocoTestReport {
dependsOn test
group = "Reporting"
description = "Generate Jacoco coverage reports after running tests."
additionalSourceDirs = files(sourceSets.main.allJava.srcDirs)
reports {
xml.enabled = true // coveralls plugin depends on xml format report
html.enabled = true
}
}
jacoco {
toolVersion = "0.7.5.201505241946"
}
final htsjdkVersion = System.getProperty('htsjdk.version', '2.8.0')
dependencies {
compile 'com.google.guava:guava:15.0'
compile 'com.github.samtools:htsjdk:' + htsjdkVersion
//tools dependency for doclet requires sdk devel
compile(files(((URLClassLoader) ToolProvider.getSystemToolClassLoader()).getURLs()))
testCompile 'org.testng:testng:6.9.10'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
final isRelease = Boolean.getBoolean("release")
final gitVersion = gitVersion().replaceAll(".dirty", "")
version = isRelease ? gitVersion : gitVersion + "-SNAPSHOT"
logger.info("build for version:" + version)
group = 'com.github.broadinstitute'
defaultTasks 'all'
task all(dependsOn: ['jar', 'distZip', 'documentAll', 'shadowJar', 'currentJar'])
jar {
manifest {
attributes 'Main-Class': 'picard.cmdline.PicardCommandLine',
'Implementation-Title': 'Picard',
'Implementation-Vendor': 'Broad Institute',
'Implementation-Version': version
}
}
// This is a hack to disable the java 8 default javadoc lint until we fix the html formatting
if (JavaVersion.current().isJava8Compatible()) {
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}
}
task currentJar(type: Copy){
from shadowJar
into new File(buildDir, "libs")
rename { string -> "picard.jar"}
}
shadowJar {
finalizedBy currentJar
}
tasks.withType(Test) {
outputs.upToDateWhen { false } // tests will always rerun
description = "Runs the unit tests"
useTestNG {
if (OperatingSystem.current().isUnix()) {
excludeGroups "slow", "broken"
} else {
excludeGroups "slow", "broken", "unix"
}
}
// set heap size for the test JVM(s)
minHeapSize = "1G"
maxHeapSize = "2G"
if (System.env.CI == "true") { //if running under a CI output less into the logs
int count = 0
beforeTest { descriptor ->
count++
if( count % 100 == 0) {
logger.lifecycle("Finished "+ Integer.toString(count++) + " tests")
}
}
} else {
// show standard out and standard error of the test JVM(s) on the console
testLogging.showStandardStreams = true
beforeTest { descriptor ->
logger.lifecycle("Running Test: " + descriptor)
}
// listen to standard out and standard error of the test JVM(s)
onOutput { descriptor, event ->
logger.lifecycle("Test: " + descriptor + " produced standard out/err: " + event.message )
}
}
testLogging {
testLogging {
events "skipped", "failed"
exceptionFormat = "full"
}
afterSuite { desc, result ->
if (!desc.parent) { // will match the outermost suite
println "Results: ${result.resultType} (${result.testCount} tests, ${result.successfulTestCount} successes, ${result.failedTestCount} failures, ${result.skippedTestCount} skipped)"
}
}
}
}
ext.htmlDir = new File("build/docs/html")
ext.htmlDirInc = new File(htmlDir, "_includes")
ext.commandClasses = ["picard.sam.AddCommentsToBam", "picard.sam.AddOrReplaceReadGroups", "picard.util.BaitDesigner", "picard.fastq.BamToBfq",
"picard.sam.BamIndexStats", "picard.util.BedToIntervalList", "picard.sam.BuildBamIndex", "picard.analysis.directed.CalculateHsMetrics",
"picard.sam.CalculateReadGroupChecksum", "picard.sam.CleanSam", "picard.analysis.CollectAlignmentSummaryMetrics",
"picard.analysis.CollectBaseDistributionByCycle", "picard.analysis.CollectGcBiasMetrics", "picard.illumina.quality.CollectHiSeqXPfFailMetrics",
"picard.analysis.directed.CollectHsMetrics", "picard.illumina.CollectIlluminaBasecallingMetrics", "picard.illumina.CollectIlluminaLaneMetrics",
"picard.analysis.CollectInsertSizeMetrics", "picard.analysis.CollectJumpingLibraryMetrics", "picard.analysis.CollectMultipleMetrics",
"picard.analysis.CollectOxoGMetrics", "picard.analysis.CollectQualityYieldMetrics", "picard.analysis.CollectRawWgsMetrics",
"picard.analysis.directed.CollectTargetedPcrMetrics", "picard.analysis.CollectRnaSeqMetrics", "picard.analysis.CollectRrbsMetrics",
"picard.analysis.artifacts.CollectSequencingArtifactMetrics", "picard.vcf.CollectVariantCallingMetrics", "picard.analysis.CollectWgsMetrics",
"picard.analysis.CollectWgsMetricsFromQuerySorted", "picard.analysis.CollectWgsMetricsFromSampledSites",
"picard.analysis.CollectWgsMetricsWithNonZeroCoverage", "picard.analysis.CompareMetrics", "picard.sam.CompareSAMs",
"picard.analysis.artifacts.ConvertSequencingArtifactToOxoG", "picard.sam.CreateSequenceDictionary", "picard.sam.DownsampleSam",
"picard.illumina.ExtractIlluminaBarcodes", "picard.sam.markduplicates.EstimateLibraryComplexity", "picard.sam.FastqToSam", "picard.util.FifoBuffer",
"picard.vcf.MendelianViolations.FindMendelianViolations",
"picard.sam.FilterSamReads", "picard.vcf.filter.FilterVcf", "picard.sam.FixMateInformation", "picard.sam.GatherBamFiles", "picard.vcf.GatherVcfs",
"picard.vcf.GenotypeConcordance", "picard.illumina.IlluminaBasecallsToFastq", "picard.illumina.IlluminaBasecallsToSam", "picard.illumina.CheckIlluminaDirectory",
"picard.sam.CheckTerminatorBlock", "picard.util.IntervalListTools", "picard.util.LiftOverIntervalList", "picard.vcf.LiftoverVcf", "picard.vcf.MakeSitesOnlyVcf",
"picard.sam.markduplicates.MarkDuplicates", "picard.sam.markduplicates.MarkDuplicatesWithMateCigar", "picard.analysis.MeanQualityByCycle",
"picard.sam.MergeBamAlignment", "picard.sam.MergeSamFiles", "picard.vcf.MergeVcfs", "picard.reference.NormalizeFasta", "picard.sam.PositionBasedDownsampleSam",
"picard.reference.ExtractSequences", "picard.analysis.QualityScoreDistribution", "picard.vcf.RenameSampleInVcf", "picard.sam.ReorderSam",
"picard.sam.ReplaceSamHeader", "picard.sam.RevertSam", "picard.sam.RevertOriginalBaseQualitiesAndAddMateCigar", "picard.sam.SamFormatConverter",
"picard.sam.SamToFastq", "picard.util.ScatterIntervalsByNs", "picard.sam.SetNmMdAndUqTags",
"picard.sam.SortSam", "picard.vcf.SortVcf", "picard.sam.SplitSamByLibrary", "picard.sam.markduplicates.UmiAwareMarkDuplicatesWithMateCigar",
"picard.vcf.UpdateVcfSequenceDictionary", "picard.vcf.VcfFormatConverter", "picard.illumina.MarkIlluminaAdapters", "picard.vcf.SplitVcfs",
"picard.sam.ValidateSamFile", "picard.sam.ViewSam", "picard.vcf.VcfToIntervalList"]
//generate documentation
task documentAll(dependsOn: ['documentCommands', 'createMetricsDoc', 'documentStandardOptions']){
doFirst{
htmlDirInc.mkdirs()
}
}
task documentCommands {
def previousDocTask = null
def usageFile = new File(htmlDirInc, "command-line-usage.html")
def sidebarFile = new File(htmlDirInc, "command-line-sidebar.html")
commandClasses.each { mainClass ->
task "document_${mainClass}"(type: JavaExec) {
main ='picard.cmdline.CreateHtmlDocForProgram'
classpath = sourceSets.main.runtimeClasspath
args mainClass
def outputFile = new File(htmlDirInc, mainClass.substring(mainClass.lastIndexOf(".") + 1) + ".html")
doFirst {
htmlDirInc.mkdirs()
standardOutput = new FileOutputStream(outputFile)
}
outputs.file outputFile
if (previousDocTask != null) delegate.dependsOn previousDocTask
previousDocTask = delegate
documentCommands.dependsOn(delegate)
doLast {
usageFile.append("{% include ${mainClass.substring(mainClass.lastIndexOf(".") + 1) + ".html"} %}")
usageFile.append(System.getProperty("line.separator"))
sidebarFile.append("<li><a href=\"command-line-overview.html#${mainClass.substring(mainClass.lastIndexOf(".") + 1)}\">${mainClass.substring(mainClass.lastIndexOf(".") + 1)}</a>")
sidebarFile.append(System.getProperty("line.separator"))
}
}
}
outputs.dir htmlDirInc
}
task documentStandardOptions(type: JavaExec) {
main = 'picard.cmdline.CreateHtmlDocForStandardOptions'
classpath = sourceSets.main.runtimeClasspath
def standardOptionsFile = new File(htmlDirInc, "standard-options.html")
doFirst{
htmlDirInc.mkdirs()
standardOutput = new FileOutputStream(standardOptionsFile)
}
outputs.file standardOptionsFile
}
task createMetricsDoc(dependsOn: classes, type: Javadoc) {
doFirst {
htmlDirInc.mkdirs()
}
source = sourceSets.main.allJava
classpath = sourceSets.main.runtimeClasspath
outputs.dir(htmlDirInc)
options.destinationDirectory = htmlDirInc
options.doclet = 'picard.util.MetricsDoclet'
options.docletpath = sourceSets.main.runtimeClasspath.asType(List)
}
//end generate documentation
task wrapper(type: Wrapper) {
description = "Regenerate the gradle wrapper"
gradleVersion = '3.1'
}
task javadocJar(type: Jar, dependsOn: documentAll) {
classifier = 'javadoc'
from 'build/docs/javadoc'
}
task sourcesJar(type: Jar) {
from sourceSets.main.allSource
classifier = 'sources'
}
/**
* This specifies what artifacts will be built and uploaded when performing a maven upload.
*/
artifacts {
archives jar
archives javadocJar
archives sourcesJar
}
/**
* Sign non-snapshot releases with our secret key. This should never need to be invoked directly.
*/
signing {
required { isRelease && gradle.taskGraph.hasTask("uploadArchives") }
sign configurations.archives
}
/**
* Upload a release to sonatype. You must be an authorized uploader and have your sonatype
* username and password information in your gradle properties file. See the readme for more info.
*
* For releasing to your local maven repo, use gradle install
*/
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: project.findProperty("sonatypeUsername"), password: project.findProperty("sonatypePassword"))
}
snapshotRepository(url: "https://artifactory.broadinstitute.org/artifactory/libs-snapshot-local/") {
authentication(userName: System.env.ARTIFACTORY_USERNAME, password: System.env.ARTIFACTORY_PASSWORD)
}
pom.project {
name 'Picard'
packaging 'jar'
description 'A set of command line tools (in Java) for manipulating high-throughput sequencing (HTS) data and formats such as SAM/BAM/CRAM and VCF.'
url 'http://broadinstitute.github.io/picard/'
developers {
developer {
id 'picard'
name 'Picard Team'
url 'http://broadinstitute.github.io/picard'
}
}
scm {
url '[email protected]:broadinstitute/picard.git'
connection 'scm:git:[email protected]:broadinstitute/picard.git'
}
licenses {
license {
name 'MIT License'
url 'http://opensource.org/licenses/MIT'
distribution 'repo'
}
}
}
}
}
doFirst {
System.out.println("Uploading version $version")
}
}
//update static web docs
task copyJavadoc(dependsOn: 'javadoc', type: Copy) {
from 'build/docs/javadoc'
into "$htmlDir/javadoc"
}
task updateGhPages(dependsOn: ['copyJavadoc', 'documentAll']){
outputs.dir htmlDir
}
updateGhPages.finalizedBy publishGhPages
githubPages {
repoUri = '[email protected]:broadinstitute/picard.git'
targetBranch = 'gh-pages'
deleteExistingFiles = false
pages {
from htmlDir
into '.'
}
}