Changeset 3774


Ignore:
Timestamp:
Aug 18, 2010, 12:58:19 PM (13 years ago)
Author:
Fredrik Levander
Message:

Refs #672. Corrected form.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/client/servlet/src/org/proteios/action/hit/CreateProteinAssemblyJob.java

    r3756 r3774  
    9494    String label = getValidString(VLABEL);
    9595    String decoyPrefix = getValidString(VDECOYPREFIX);
    96     if (!getValidBoolean(VPROTFDR)) decoyPrefix=""; 
     96    Boolean isProtFdr = getValidBoolean(VPROTFDR);
     97    if (isProtFdr==null || !isProtFdr) decoyPrefix=""; 
    9798    Float fdrCutOff = getValidFloat(VCUTOFF);
    9899    Float ProtFdrCutOff = getValidFloat(VPROTCUTOFF);
Note: See TracChangeset for help on using the changeset viewer.