Skip to content

Commit

Permalink
v2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevinzjy committed Sep 7, 2023
1 parent f1b818f commit 5da9bc0
Show file tree
Hide file tree
Showing 22 changed files with 19 additions and 5 deletions.
Binary file removed .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.DS_Store
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.PHONY: install test

install:
javac -d bin src/*.java && cd bin && jar cvfm ../CIRI-Full_v2.1.2.jar MANIFEST.MF *.class

test:
java -jar ./CIRI-Full_v2.1.2.jar
Binary file modified bin/CIRI_Full2$1.class
Binary file not shown.
Binary file modified bin/CIRI_Full2$2.class
Binary file not shown.
Binary file modified bin/CIRI_Full2$3.class
Binary file not shown.
Binary file modified bin/CIRI_Full2$4.class
Binary file not shown.
Binary file modified bin/CIRI_Full2.class
Binary file not shown.
Binary file modified bin/Exon_cov2.class
Binary file not shown.
Binary file modified bin/Exon_gtf.class
Binary file not shown.
Binary file modified bin/Exon_length.class
Binary file not shown.
2 changes: 2 additions & 0 deletions bin/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Manifest-Version: 1.0
Main-Class: CIRI_Full2
Binary file modified bin/Merge3.class
Binary file not shown.
Binary file modified bin/RO1_single.class
Binary file not shown.
Binary file modified bin/RO2.class
Binary file not shown.
Binary file modified bin/Seq.class
Binary file not shown.
Binary file modified bin/index_head_finder2.class
Binary file not shown.
Binary file modified bin/index_head_finder_more.class
Binary file not shown.
Binary file modified bin/reversc.class
Binary file not shown.
Binary file modified bin/sam5.class
Binary file not shown.
2 changes: 1 addition & 1 deletion src/CIRI_Full2.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public class CIRI_Full2 {
public static void main(String[] args) throws InterruptedException, IOException {

long tstart = System.currentTimeMillis();
String v="Version: 2.0.1";
String v="Version: 2.1.2";
String dir=System.getProperty("user.dir");
int a=args.length;
int help=0;
Expand Down
12 changes: 8 additions & 4 deletions src/Merge3.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public int getmerge() throws IOException{
Map<String,List<String>> mapchr=new HashMap<String,List<String>>();
Map<String,List<int[]>> mapchr2=new HashMap<String,List<int[]>>();
ArrayList<String> q1= new ArrayList<String>();

int ifgtf=1;
if(!gtf.equals("")){
FileReader in=new FileReader(gtf);
LineNumberReader reader=new LineNumberReader(in);
Expand Down Expand Up @@ -103,6 +103,7 @@ public int getmerge() throws IOException{
System.out.println("Annotation Loaded");
}
else{
ifgtf=0;
System.out.println("Annotation file not set");
}
//Load_CIRI_AS
Expand Down Expand Up @@ -236,7 +237,7 @@ public int getmerge() throws IOException{
if(in_c==i){
int n1=0;
while(n1<tmp2.length){
if(tmpa1[4].equals("")!=true){
if(tmpa1[4].equals("")!=true && tmpa1[4].equals("n/a")!=true){
String[] exon=tmpa1[4].split(",");
i=0;
while(i<exon.length){
Expand Down Expand Up @@ -785,8 +786,11 @@ else if(i==tmp2.length-1)
String outline;
while(i<total){
outline=chr[i]+":"+start[i]+"|"+end[i]+" "+chr[i]+" "+start[i]+" "+end[i]+" ";
Exon_gtf test=new Exon_gtf(start[i],end[i],mapchr2.get(chr[i]));
List<int[]> gtf_exon=test.get_exon();
List<int[]> gtf_exon = new ArrayList<int[]>();
if(ifgtf==1) {
Exon_gtf test=new Exon_gtf(start[i],end[i],mapchr2.get(chr[i]));
gtf_exon=test.get_exon();
}
Iterator<int[]> gtfexon=gtf_exon.iterator();
int dd=0;

Expand Down

0 comments on commit 5da9bc0

Please sign in to comment.