-
Notifications
You must be signed in to change notification settings - Fork 361
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
84f5595
commit 3713d16
Showing
13 changed files
with
29 additions
and
145 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
13 changes: 13 additions & 0 deletions
13
backend/src/main/scala/cromwell/backend/MinimumRuntimeSettings.scala
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package cromwell.backend | ||
|
||
import eu.timepit.refined.api.Refined | ||
import eu.timepit.refined.numeric.Positive | ||
import eu.timepit.refined.refineMV | ||
import wdl4s.parser.MemoryUnit | ||
import wom.format.MemorySize | ||
|
||
case class MinimumRuntimeSettings(cores: Int Refined Positive = refineMV(1), | ||
ram: MemorySize = MemorySize(4, MemoryUnit.GB), | ||
outputPathSize: Long = Long.MaxValue, | ||
tempPathSize: Long = Long.MaxValue | ||
) |
64 changes: 0 additions & 64 deletions
64
backend/src/main/scala/cromwell/backend/RuntimeEnvironment.scala
This file was deleted.
Oops, something went wrong.
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
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
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
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 |
---|---|---|
@@ -1,15 +1,13 @@ | ||
package wom | ||
|
||
import common.validation.ErrorOr.ErrorOr | ||
import wom.callable.RuntimeEnvironment | ||
import wom.expression.IoFunctionSet | ||
import wom.graph.LocalName | ||
import wom.values.WomValue | ||
|
||
trait CommandPart { | ||
def instantiate(inputsMap: Map[LocalName, WomValue], | ||
functions: IoFunctionSet, | ||
valueMapper: WomValue => WomValue, | ||
runtimeEnvironment: RuntimeEnvironment | ||
valueMapper: WomValue => WomValue | ||
): ErrorOr[List[InstantiatedCommand]] | ||
} |
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 was deleted.
Oops, something went wrong.