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

update main so that user can supply list of sequences to write out

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@9007 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent c038d8ef
No related branches found
No related tags found
No related merge requests found
......@@ -212,7 +212,10 @@ public class ReadAndWriteEntry
//
//
final String names[] = {
final String names[];
if(args == null || args.length < 1)
names = new String[]{
"bin.fas",
"chab01.fas",
"chab02.fas",
......@@ -229,6 +232,8 @@ public class ReadAndWriteEntry
"chab13.fas",
"chab14.fas",
"chab99.fas" };
else
names = args;
for(int i=0;i < names.length; i++)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment