Skip to content

Commit 91e2284

Browse files
committed
Support RDS for sequence file import
1 parent d4998fc commit 91e2284

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/util/SequenceOutputFileType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ public class SequenceOutputFileType extends FileType
1111
{
1212
public SequenceOutputFileType()
1313
{
14-
super(Arrays.asList(".bam", ".gff", ".gtf", ".bed", ".vcf"), ".bed", FileType.gzSupportLevel.SUPPORT_GZ);
14+
super(Arrays.asList(".bam", ".gff", ".gtf", ".bed", ".vcf", ".rds"), ".bed", FileType.gzSupportLevel.SUPPORT_GZ);
1515
}
1616
}

singlecell/src/org/labkey/singlecell/analysis/ProcessSeuratObjectHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
public class ProcessSeuratObjectHandler extends AbstractSingleCellHandler implements SequenceOutputHandler<SequenceOutputHandler.SequenceOutputProcessor>, SequenceOutputHandler.HasActionNames
1515
{
16-
private static FileType SEURAT_TYPE = new FileType("seurat.rds", false);
16+
private static final FileType SEURAT_TYPE = new FileType("seurat.rds", false);
1717

1818
@Override
1919
public String getName()

0 commit comments

Comments
 (0)