@@ -216,7 +216,8 @@ else if (nt.getLineage().contains("D"))
216216 "TRD" .equals (locus ) ||
217217 "TRG" .equals (locus ) ||
218218 // Add all TRAVs (which are not already tagged TRA/TRD) to the file:
219- (nt .getLineage ().contains ("V" ) && "TRA" .equals (nt .getLocus ())))
219+ (nt .getLineage ().contains ("V" ) && "TRA" .equals (nt .getLocus ())) ||
220+ ("C-REGION" .equals (type )))
220221 {
221222 gdWriter .write (header + "\n " );
222223 gdWriter .write (seq + "\n " );
@@ -226,7 +227,8 @@ else if (nt.getLineage().contains("D"))
226227 "TRA" .equals (locus ) ||
227228 "TRB" .equals (locus ) ||
228229 // Add all TRDVs (which are not already tagged TRA/TRD) to the file:
229- (nt .getLineage ().contains ("V" ) && "TRD" .equals (nt .getLocus ())))
230+ (nt .getLineage ().contains ("V" ) && "TRD" .equals (nt .getLocus ())) ||
231+ ("C-REGION" .equals (type )))
230232 {
231233 abWriter .write (header + "\n " );
232234 abWriter .write (seq + "\n " );
@@ -330,6 +332,7 @@ public AlignmentStep.AlignmentOutput performAlignment(Readset rs, List<File> inp
330332 List <String > args = new ArrayList <>();
331333 args .add (getWrapper ().getExe ().getPath ());
332334 args .add ("multi" );
335+ args .add ("--disable-ui" );
333336
334337 String idParam = StringUtils .trimToNull (getProvider ().getParameterByName ("id" ).extractValue (getPipelineCtx ().getJob (), getProvider (), getStepIdx (), String .class ));
335338 String id = FileUtil .makeLegalName (rs .getName ()) + (idParam == null ? "" : "-" + idParam );
@@ -388,7 +391,6 @@ public AlignmentStep.AlignmentOutput performAlignment(Readset rs, List<File> inp
388391 writer .println ("[vdj]" );
389392 writer .println ("reference," + indexDir .getPath ());
390393 writer .println ("inner-enrichment-primers," + primerFile );
391- writer .println ("create-bam,false" );
392394 writer .println ("" );
393395 writer .println ("[libraries]" );
394396 writer .println ("fastq_id,fastqs,lanes,feature_types,subsample_rate" );
0 commit comments