-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Failed to process file #130
Comments
I got the same:
The two files are roughly the same size, so memory shouldnt be an issue?
I was using version
|
Hmm. Fastqc doesn't explicitly use a shared memory file. That warning suggests that your /tmp location has no space on it, but I'm not sure that's the root of the issue. This issue looks like the same thing and the upshot is that it's a warning you can ignore and which won't affect the running of the program. The second part is more of a concern where the image being rendered ends up null, but without a prior error. Obviously trying to render a null image would be a problem but there's no error which says why or how the image ended up being null. It could be something to do with a strange behaviour in the data, but there's no way to tell from the information here. I do wonder if the lack of any tmp space is problematic - it could be that the ImageIO stuff uses that silently behind the scenes? It's not something we'd seen before. Some options to debug:
..add another line which sets the
Then see if either of those helps. If you fancy sharing one of the files which fails with me then let me know and I can have a go at processing it and seeing that fails. |
thanks @s-andrews . I deleted all files from |
Hello I am trying to run FastQC, but I have been receiving an error where file has failed to process. I have included the output below.
${PROG}/fastqc_v0.12.1/FastQC/fastqc AG2_R2_001.fastq.gz --extract -o ${DIR}/FastQC_raw
OpenJDK 64-Bit Server VM warning: Insufficient space for shared memory file:
1246065
Try using the -Djava.io.tmpdir= option to select an alternate temp location.
application/gzip
Started analysis of AG2_R2_001.fastq.gz
Approx 5% complete for AG2_R2_001.fastq.gz
Approx 10% complete for AG2_R2_001.fastq.gz
Approx 15% complete for AG2_R2_001.fastq.gz
Approx 20% complete for AG2_R2_001.fastq.gz
Approx 25% complete for AG2_R2_001.fastq.gz
Approx 30% complete for AG2_R2_001.fastq.gz
Approx 35% complete for AG2_R2_001.fastq.gz
Approx 40% complete for AG2_R2_001.fastq.gz
Approx 45% complete for AG2_R2_001.fastq.gz
Approx 50% complete for AG2_R2_001.fastq.gz
Approx 55% complete for AG2_R2_001.fastq.gz
Approx 60% complete for AG2_R2_001.fastq.gz
Approx 65% complete for AG2_R2_001.fastq.gz
Approx 70% complete for AG2_R2_001.fastq.gz
Approx 75% complete for AG2_R2_001.fastq.gz
Approx 80% complete for AG2_R2_001.fastq.gz
Approx 85% complete for AG2_R2_001.fastq.gz
Approx 90% complete for AG2_R2_001.fastq.gz
Approx 95% complete for AG2_R2_001.fastq.gz
Analysis complete for AG2_R2_001.fastq.gz
Failed to process file AG2_R2_001.fastq.gz
java.lang.IllegalArgumentException: image == null!
at java.desktop/javax.imageio.ImageTypeSpecifier.createFromRenderedImage(ImageTypeSpecifier.java:925)
at java.desktop/javax.imageio.ImageIO.getWriter(ImageIO.java:1610)
at java.desktop/javax.imageio.ImageIO.write(ImageIO.java:1596)
at uk.ac.babraham.FastQC.Utilities.ImageToBase64.imageToBase64(ImageToBase64.java:38)
at uk.ac.babraham.FastQC.Report.HTMLReportArchive.base64ForIcon(HTMLReportArchive.java:384)
at uk.ac.babraham.FastQC.Report.HTMLReportArchive.startDocument(HTMLReportArchive.java:307)
at uk.ac.babraham.FastQC.Report.HTMLReportArchive.(HTMLReportArchive.java:84)
at uk.ac.babraham.FastQC.Analysis.OfflineRunner.analysisComplete(OfflineRunner.java:189)
at uk.ac.babraham.FastQC.Analysis.AnalysisRunner.run(AnalysisRunner.java:123)
at java.base/java.lang.Thread.run(Thread.java:833)
I am using OpenJDK version "17.0.7" 2023-04-18. I have tried both fastqc versions 12.1 and 11.9 and receive the same error.
The text was updated successfully, but these errors were encountered: