We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2084340 commit 1af5330Copy full SHA for 1af5330
1 file changed
tcrdb/src/org/labkey/tcrdb/pipeline/CellRangerVDJUtils.java
@@ -512,6 +512,12 @@ else if (discordantBarcodes.contains(barcode))
512
for (File f : Arrays.asList(consensusFastaGD, allFastaGD))
513
{
514
_log.info("processing G/D FASTA: " + f.getPath());
515
+ if (!SequencePipelineService.get().hasMinLineCount(f, 2))
516
+ {
517
+ _log.info("too few lines, skipping FASTA:" + f.getPath());
518
+ continue;
519
+ }
520
+
521
try (FastaDataLoader loader = new FastaDataLoader(f, false))
522
523
loader.setCharacterFilter(new FastaLoader.UpperAndLowercaseCharacterFilter());
0 commit comments