apeltzer / ReportTable

The Report Generation Engine for the EAGER Pipeline
GNU General Public License v3.0
1 stars 1 forks source link

ReportTable fails when only AdapterRemoval has been run #16

Closed jfy133 closed 7 years ago

jfy133 commented 7 years ago

If an EAGER run has been set up that has only the initial pre-processing and AdapterRemoval modules turned on (nothing downstream other than 'ReportGenerator' and 'Cleanup') ReportTable fails with the following error:

Analyzing Sample: TARA_Y100000588
Exception in thread "main" java.lang.NumberFormatException: For input string: "NA"
    at sun.misc.FloatingDecimal.readJavaFormatString(FloatingDecimal.java:2043)
    at sun.misc.FloatingDecimal.parseDouble(FloatingDecimal.java:110)
    at java.lang.Double.parseDouble(Double.java:538)
    at analyse.AnalyzeSample.analyseFiles(AnalyzeSample.java:427)
    at analyse.AnalyzeSample.<init>(AnalyzeSample.java:133)
    at main.ReportTable.main(ReportTable.java:83)

In the EAGER setup described above, only the following entries are found in the EAGER output directory:

apeltzer commented 7 years ago

@zxmmx04 What do you need to get that fixed?

alex-seitz commented 7 years ago

The current commit (version 1.92.29) should fix that problem

jfy133 commented 7 years ago

This has not fixed the problem. I recieve pretty much the same error except this line: at analyse.AnalyzeSample.analyseFiles(AnalyzeSample.java:439)

alex-seitz commented 7 years ago

I see the problem. It might take some time to fix it. I will write and commit then.

alex-seitz commented 7 years ago

Now the lates commit (1.92.30) should work. At least it does here.

jfy133 commented 7 years ago

Works for me as well now. Thanks!