-
Notifications
You must be signed in to change notification settings - Fork 651
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Paolo Di Tommaso <[email protected]>
- Loading branch information
1 parent
dd999a3
commit 4da0442
Showing
4 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,12 +18,14 @@ | |
package io.seqera.wave.plugin.config | ||
|
||
import groovy.transform.CompileStatic | ||
import groovy.transform.ToString | ||
import nextflow.trace.TraceHelper | ||
|
||
/** | ||
* | ||
* @author Paolo Di Tommaso <[email protected]> | ||
*/ | ||
@ToString(includeNames = true, includePackage = false) | ||
@CompileStatic | ||
class ReportOpts { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,11 +16,17 @@ | |
*/ | ||
|
||
package io.seqera.wave.plugin.config | ||
|
||
import groovy.transform.CompileStatic | ||
import groovy.transform.ToString | ||
|
||
/** | ||
* Model Tower config accessed by Wave | ||
* | ||
* @author Paolo Di Tommaso <[email protected]> | ||
*/ | ||
@ToString(includeNames = true, includePackage = false) | ||
@CompileStatic | ||
class TowerConfig { | ||
|
||
final String accessToken | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,7 @@ | |
package io.seqera.wave.plugin.config | ||
|
||
import groovy.transform.CompileStatic | ||
import groovy.transform.ToString | ||
import groovy.util.logging.Slf4j | ||
import io.seqera.wave.config.CondaOpts | ||
import io.seqera.wave.config.SpackOpts | ||
|
@@ -28,6 +29,7 @@ import nextflow.util.Duration | |
* @author Paolo Di Tommaso <[email protected]> | ||
*/ | ||
@Slf4j | ||
@ToString(includeNames = true, includePackage = false) | ||
@CompileStatic | ||
class WaveConfig { | ||
final private static String DEF_ENDPOINT = 'https://wave.seqera.io' | ||
|