Skip to content

Commit

Permalink
Correct FastQC return when fails
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelpmachado authored Apr 10, 2017
1 parent e276250 commit 86b07b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/fastqc.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ def runFastQCanalysis(outdir, threads, adaptersFasta, fastq_files, keepFiles, fa
run_successfully = check_FastQC_runSuccessfully(fastqc_folder, fastq_files)
if not run_successfully:
failing['sample'] = 'Did not run'
return run_successfully, pass_qc, failing, maximumReadsLength, nts2clip_based_ntsContent
return run_successfully, pass_qc, failing, warnings, maximumReadsLength, nts2clip_based_ntsContent

# Check which reads pass FastQC
goodReads, badReads, failing, warnings = parseFastQC(fastqc_folder, fastq_files)
Expand Down

0 comments on commit 86b07b6

Please sign in to comment.