Skip to content

Commit

Permalink
Just added ## to some "processing file" output.
Browse files Browse the repository at this point in the history
  • Loading branch information
sammyjava committed Oct 5, 2022
1 parent 05c6823 commit a45e394
Show file tree
Hide file tree
Showing 13 changed files with 5 additions and 5 deletions.
Binary file modified lis-annotation/libs/ncgr-datastore.jar
Binary file not shown.
Binary file modified lis-expression/libs/ncgr-datastore.jar
Binary file not shown.
Binary file modified lis-genome/libs/ncgr-datastore.jar
Binary file not shown.
Binary file modified lis-gwas/libs/ncgr-datastore.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ public void process(Reader reader) throws IOException {
if (getCurrentFile().getName().startsWith("README")) {
processReadme(reader);
} else if (getCurrentFile().getName().endsWith(".hsh.tsv")) {
System.out.println("## Processing "+getCurrentFile().getName());
processHSHFile(reader);
}
}
Expand Down Expand Up @@ -87,7 +88,6 @@ public void close() throws ObjectStoreException {
* glysp.mixed.pan2.SoyPan000001 glyma.Lee.gnm1.ann1.GlymaLee.16G153800.1
*/
void processHSHFile(Reader reader) throws IOException {
System.out.println("Processing "+getCurrentFile().getName());
String[] fileParts = getCurrentFile().getName().split("\\.");
if (fileParts.length!=6) {
throw new RuntimeException("HSH file does not have the required 6 dot-separated parts: "+getCurrentFile().getName());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ public void process(Reader reader) throws IOException {
// README not yet processed, store this reader for processing after README
annotFileReader = reader;
} else {
System.out.println("## Processing "+getCurrentFile().getName());
processInfoAnnotFile(reader);
}
}
Expand Down Expand Up @@ -158,7 +159,6 @@ public void close() throws ObjectStoreException {
* 37170591 Phvul.001G000400 Phvul.001G000400.1 Phvul.001G000400.1.p PF00504 PTHR21649,PTHR21649:SF24 1.10.3.9 K14172 GO:0016020,GO:0009765 AT1G76570.1 Chlorophyll family protein
*/
void processInfoAnnotFile(Reader reader) throws IOException {
System.out.println("Processing "+getCurrentFile().getName());
// spin through the file
BufferedReader br = new BufferedReader(reader);
String line = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ public void process(Reader reader) throws IOException {
processReadme(reader);
setStrain();
} else if (getCurrentFile().getName().endsWith("iprscan.gff3")) {
System.out.println("## Processing "+getCurrentFile().getName());
processGFF(reader);
}
}
Expand Down Expand Up @@ -88,7 +89,6 @@ public void close() throws ObjectStoreException {
* medsa.XinJiangDaYe.gnm1.ann1.RKB9.iprscan.gff3
*/
void processGFF(Reader reader) throws IOException {
System.out.println("Processing "+getCurrentFile().getName());
// spin through the file
String line = null;
BufferedReader br = new BufferedReader(reader);
Expand Down
Binary file modified lis-map/libs/ncgr-datastore.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ public void process(Reader reader) throws IOException {
}
geneticMap.setAttribute("genotypes", genotypes);
} else if (getCurrentFile().getName().endsWith("lg.tsv.gz")) {
System.out.println("Processing "+getCurrentFile().getName());
System.out.println("## Processing "+getCurrentFile().getName());
processLgFile();
} else if (getCurrentFile().getName().endsWith("mrk.tsv.gz")) {
System.out.println("Processing "+getCurrentFile().getName());
System.out.println("## Processing "+getCurrentFile().getName());
processMrkFile();
} else {
System.out.println("## - Skipping "+getCurrentFile().getName());
Expand Down
Binary file modified lis-markers/libs/ncgr-datastore.jar
Binary file not shown.
Binary file modified lis-mstmap/libs/ncgr-datastore.jar
Binary file not shown.
Binary file modified lis-qtl/libs/ncgr-datastore.jar
Binary file not shown.
Binary file modified lis-synteny/libs/ncgr-datastore.jar
Binary file not shown.

0 comments on commit a45e394

Please sign in to comment.