1
0

2 Коммитууд 354d5c9a42 ... 48a6cb89db

Эзэн SHA1 Мессеж Огноо
  Thomas 48a6cb89db upated straglr job_name to refelct the sample and part 1 сар өмнө
  Thomas aad235db3d upated straglr job_name to refelct the sample and part 1 сар өмнө

+ 1 - 1
src/callers/mod.rs

@@ -292,7 +292,7 @@ pub fn run_chunkeds(id: &str, config: &Config) -> anyhow::Result<()> {
     DeepVariant::initialize(id, &config.tumoral_name, config)?.run()?;
 
     // Straglr - Short Tandem Repeat (STR) genotyper
-    Straglr::initialize(id, config)?.run()
+    // Straglr::initialize(id, config)?.run()
 }
 
 #[cfg(test)]

+ 2 - 2
src/callers/straglr.rs

@@ -751,7 +751,7 @@ impl SlurmRunner for StraglrJob {
         SlurmParams {
             job_name: Some(job_name),
             partition: Some("shortq".into()),
-            cpus_per_task: Some(20),
+            cpus_per_task: Some(10),
             mem: Some("10G".into()),
             gres: None,
         }
@@ -765,7 +765,7 @@ impl SbatchRunner for StraglrJob {
         SlurmParams {
             job_name: Some(job_name),
             partition: Some("shortq".into()),
-            cpus_per_task: Some(20),
+            cpus_per_task: Some(10),
             mem: Some("10G".into()),
             gres: None,
         }