Skip to content

Commit

Permalink
Add pytorch-lightning to GATK conda env, temporarily disable jacoco i…
Browse files Browse the repository at this point in the history
…n build.gradle
  • Loading branch information
droazen committed Sep 27, 2024
1 parent 22902a1 commit 937ff90
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 13 deletions.
27 changes: 14 additions & 13 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
id "application" // provides installDist
id 'maven-publish'
id 'signing'
id "jacoco"
// id "jacoco"
id "de.undercouch.download" version "5.4.0" //used for downloading GSA lib
id "com.github.johnrengelman.shadow" version "8.1.1" //used to build the shadow and sparkJars
id "com.github.ben-manes.versions" version "0.12.0" //used for identifying dependencies that need updating
Expand Down Expand Up @@ -625,18 +625,19 @@ task bundle(type: Zip) {
}
}

jacocoTestReport {
dependsOn test

group = "Reporting"
description = "Generate Jacoco coverage reports after running tests."
getAdditionalSourceDirs().from(sourceSets.main.allJava.srcDirs)

reports {
xml.required = true
html.required = true
}
}
//jacocoTestReport {
// dependsOn test
//
// group = "Reporting"
// description = "Generate Jacoco coverage reports after running tests."
// getAdditionalSourceDirs().from(sourceSets.main.allJava.srcDirs)
//
// reports {
// xml.required = true
// html.required = true
// }
//}
//}

task condaStandardEnvironmentDefinition(type: Copy) {
from "scripts"
Expand Down
1 change: 1 addition & 0 deletions scripts/gatkcondaenv.yml.template
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ dependencies:
- conda-forge::scipy=1.11.4
- conda-forge::h5py=3.10.0
- conda-forge::pytorch=2.1.0=*mkl*100
- conda-forge::pytorch-lightning=2.4.0 # supports Pytorch >= 2.1 and <= 2.4
- conda-forge::scikit-learn=1.3.2
- conda-forge::matplotlib=3.8.2
- conda-forge::pandas=2.1.3
Expand Down

0 comments on commit 937ff90

Please sign in to comment.