Skip to content
Snippets Groups Projects
Commit b1245134 authored by tjc's avatar tjc
Browse files

add test for BCF file format

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@15131 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent 8bbbfb8a
No related branches found
No related tags found
No related merge requests found
...@@ -42,32 +42,7 @@ import uk.ac.sanger.artemis.io.Key; ...@@ -42,32 +42,7 @@ import uk.ac.sanger.artemis.io.Key;
import net.sf.samtools.util.BlockCompressedInputStream; import net.sf.samtools.util.BlockCompressedInputStream;
class IOUtils class IOUtils
{ {
private static void writeHeader(final String fileName, final Writer writer)
{
try
{
FileInputStream fileStream = new FileInputStream(fileName);
BlockCompressedInputStream is = new BlockCompressedInputStream(fileStream);
int c;
int lc = -1;
while((c = is.read()) >= 0)
{
if(lc == '\n' && c != '#')
break;
writer.write(c);
}
is.close();
}
catch (IOException e)
{
e.printStackTrace();
}
}
/** /**
* Write filtered uncompressed VCF. Uses the filter in VCFview to * Write filtered uncompressed VCF. Uses the filter in VCFview to
* determine if variants are written. * determine if variants are written.
...@@ -81,7 +56,6 @@ class IOUtils ...@@ -81,7 +56,6 @@ class IOUtils
final VCFview vcfView, final VCFview vcfView,
final FeatureVector features) final FeatureVector features)
{ {
writeHeader(vcfFileName, writer);
try try
{ {
TabixReader tr = new TabixReader(vcfFileName); TabixReader tr = new TabixReader(vcfFileName);
...@@ -89,7 +63,10 @@ class IOUtils ...@@ -89,7 +63,10 @@ class IOUtils
while ((line = tr.readLine()) != null) while ((line = tr.readLine()) != null)
{ {
if(line.startsWith("#")) if(line.startsWith("#"))
{
writer.write(line+'\n');
continue; continue;
}
String parts[] = VCFview.tabPattern.split(line, 0); String parts[] = VCFview.tabPattern.split(line, 0);
int basePosition = Integer.parseInt(parts[1]) + vcfView.getSequenceOffset(parts[0]); int basePosition = Integer.parseInt(parts[1]) + vcfView.getSequenceOffset(parts[0]);
if( !vcfView.showVariant(parts[3], parts[4], features, basePosition, parts[5]) ) if( !vcfView.showVariant(parts[3], parts[4], features, basePosition, parts[5]) )
...@@ -104,6 +81,12 @@ class IOUtils ...@@ -104,6 +81,12 @@ class IOUtils
} }
} }
/**
* Export as a VCF based on the filtering applied in the VCFview.
* @param entryGroup
* @param vcfFiles
* @param vcfView
*/
protected static void export(final EntryGroup entryGroup, protected static void export(final EntryGroup entryGroup,
final List<String> vcfFiles, final List<String> vcfFiles,
final VCFview vcfView) final VCFview vcfView)
...@@ -141,5 +124,25 @@ class IOUtils ...@@ -141,5 +124,25 @@ class IOUtils
"Error", JOptionPane.ERROR_MESSAGE); "Error", JOptionPane.ERROR_MESSAGE);
} }
} }
/**
* Test if this is a BCF file.
* @param fileName
* @return
* @throws IOException
*/
protected static boolean isBCF(String fileName) throws IOException
{
FileInputStream fis = new FileInputStream(fileName);
BlockCompressedInputStream is = new BlockCompressedInputStream(fis);
byte[] magic = new byte[4];
is.read(magic);
fis.close();
is.close();
String line = new String(magic);
if(line.equals("BCF\4"))
return true;
return false;
}
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment