Skip to content
This repository was archived by the owner on Apr 22, 2025. It is now read-only.

Removed constraint added to fastqc. #161

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions sequence_processing_pipeline/FastQCJob.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,8 +278,6 @@ def _generate_job_script(self):
lines.append(f"#SBATCH -n {self.nprocs}")
lines.append("#SBATCH --time %d" % self.wall_time_limit)
lines.append(f"#SBATCH --mem {self.jmem}")
lines.append('#SBATCH --constraint="intel"')

lines.append("#SBATCH --array 1-%d%%%d" % (
len(self.commands), self.pool_size))

Expand Down
Loading