@@ -132,7 +132,7 @@ public static CellHashingService.CellHashingParameters createFromStep(SequenceOu
132132 ret .callerDisagreementThreshold = step .getProvider ().getParameterByName ("callerDisagreementThreshold" ).extractValue (ctx .getJob (), step .getProvider (), step .getStepIdx (), Double .class , null );
133133 ret .doTSNE = step .getProvider ().getParameterByName ("doTSNE" ).extractValue (ctx .getJob (), step .getProvider (), step .getStepIdx (), Boolean .class , false );
134134 ret .doNotAllowResume = step .getProvider ().getParameterByName ("doNotAllowResume" ).extractValue (ctx .getJob (), step .getProvider (), step .getStepIdx (), Boolean .class , false );
135- ret .retainRawCountFile = step .getProvider ().getParameterByName ("retainRawCountFile" ).extractValue (ctx .getJob (), step .getProvider (), step .getStepIdx (), Boolean .class , true );
135+ ret .retainRawCountFile = step .getProvider ().getParameterByName ("retainRawCountFile" ).extractValue (ctx .getJob (), step .getProvider (), step .getStepIdx (), Boolean .class , false );
136136 ret .failIfUnexpectedHtosFound = step .getProvider ().getParameterByName ("failIfUnexpectedHtosFound" ).extractValue (ctx .getJob (), step .getProvider (), step .getStepIdx (), Boolean .class , true );
137137 ret .htoReadset = htoReadset ;
138138 ret .parentReadset = parentReadset ;
@@ -177,7 +177,7 @@ public static CellHashingParameters createFromJson(BARCODE_TYPE type, File webse
177177 ret .callerDisagreementThreshold = params .get ("callerDisagreementThreshold" ) == null ? null : params .getDouble ("callerDisagreementThreshold" );
178178 ret .doTSNE = params .optBoolean ("doTSNE" , false );
179179 ret .doNotAllowResume = params .optBoolean ("doNotAllowResume" , false );
180- ret .retainRawCountFile = params .optBoolean ("retainRawCountFile" , true );
180+ ret .retainRawCountFile = params .optBoolean ("retainRawCountFile" , false );
181181 ret .failIfUnexpectedHtosFound = params .optBoolean ("failIfUnexpectedHtosFound" , true );
182182 ret .htoReadset = htoReadset ;
183183 ret .parentReadset = parentReadset ;
0 commit comments