STRonGR

Workflows

  • CALLING
  • CNV
  • DIFFERENTIAL-EXPRESSION
  • FUSION
  • GENOMIC-EXPRESSION
  • MAPPING
  • QUALITY

Frequently Asked Questions

  • How to choose the right annotation and sequences
  • Cluster related questions
    • What is cold storage?
    • Slurm : partition time limit error
  • RNA-Seq oriented questions

Tutorial

  • Use of STRonGR
  • How to add your own pipeline
  • Install STRonGR
STRonGR
  • »
  • Cluster related questions
  • View page source

Cluster related questions¶

What is cold storage?¶

On most clusters, a difference is being made between repositories designed to IO-intensive computations (hot storage), and repositories designed to archive (cold storage). Locally, system administrators allow (or not) the users to compute on archive-designed repositories.

Yet, copying all your fastq files at once before starting to work is time consuming and requires two copies of all your fastq files at the beginning of your work. Let Snakemake handle both copy creation and removal. This will save you time!

Slurm : partition time limit error¶

This error is not related to the pipeline itself, but with your use of Snakemake. This issue is raised because too much time was required for the queue you specified.

Your command line looks like : –qsub –time={resources.time} –mem={resources.mem_mb}

The time provided by the pipeline through the argument –time is too high for the queue YOU specified. Your command line should look like: –qsub –time={resources.time} –mem={resources.mem_mb} -p mediumq

Or else, you could use a profile! Snakemake profile allows to choose automatically the best queue! If you are in Gustave Roussy Institute, then look at: slurm

Next Previous

© Copyright 2019, STRonGR team

Built with Sphinx using a theme provided by Read the Docs.