2 Commits 354d5c9a42 ... 48a6cb89db

Autor SHA1 Mensagem Data
  Thomas 48a6cb89db upated straglr job_name to refelct the sample and part há 1 mês atrás
  Thomas aad235db3d upated straglr job_name to refelct the sample and part há 1 mês atrás
2 ficheiros alterados com 3 adições e 3 exclusões
  1. 1 1
      src/callers/mod.rs
  2. 2 2
      src/callers/straglr.rs

+ 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,
         }