|
|
@@ -286,7 +286,7 @@ impl SlurmRunner for DeepSomatic {
|
|
|
job_name: Some(format!("deepsomatic_{}", self.id)),
|
|
|
cpus_per_task: Some(self.config.deepsomatic_threads as u32),
|
|
|
mem: Some("60G".into()),
|
|
|
- partition: Some("batch".into()),
|
|
|
+ partition: Some("shortq".into()),
|
|
|
gres: None,
|
|
|
}
|
|
|
.to_args()
|
|
|
@@ -299,7 +299,7 @@ impl SbatchRunner for DeepSomatic {
|
|
|
job_name: Some(format!("deepsomatic_{}", self.id)),
|
|
|
cpus_per_task: Some(self.config.deepsomatic_threads as u32),
|
|
|
mem: Some("60G".into()),
|
|
|
- partition: Some("batch".into()),
|
|
|
+ partition: Some("shortq".into()),
|
|
|
gres: None,
|
|
|
}
|
|
|
}
|
|
|
@@ -661,6 +661,6 @@ mod tests {
|
|
|
fn deepsomatic_run() -> anyhow::Result<()> {
|
|
|
test_init();
|
|
|
let config = Config::default();
|
|
|
- run_deepsomatic_chunked("34528", &config, 30)
|
|
|
+ run_deepsomatic_chunked("DUMCO", &config, 50)
|
|
|
}
|
|
|
}
|