Skip to content

Commit

Permalink
v1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
psalguerog committed Mar 31, 2021
1 parent 48feea1 commit 80ba4ec
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 2,831 deletions.
8 changes: 1 addition & 7 deletions AnnotationSymbols.java
Original file line number Diff line number Diff line change
Expand Up @@ -1098,12 +1098,6 @@ private SymbolExtensionInfo drawBlock(SymbolDef symdef, GraphicsContext gc, doub
}
ArrayList<double[]> lstBlocks = new ArrayList<>();

if(entry.source.equals("PAR-clip"))
System.out.println("strseg es demasiado grande comparado con utrsite");

if(entry.source.equals("UTRsite"))
System.out.println("Ver porqué todo 0s");

int endseg;
double x, width;
double mult = viewer.getViewType(viewer.getClass().toString()).equals(ViewAnnotation.Views.PROTEIN)? 3.0 : 1.0;
Expand All @@ -1114,7 +1108,7 @@ private SymbolExtensionInfo drawBlock(SymbolDef symdef, GraphicsContext gc, doub
boolean done = false;
SymbolExtensionInfo sei = new SymbolExtensionInfo(0, 0, 0, 0);
for(SeqAlign.Position pos : posList) {
if((!done && strseg >= pos.start && strseg <= pos.end)){ // || entry.source.equals("PAR-clip")) {
if((!done && strseg >= pos.start && strseg <= pos.end)){
done = true;
endseg = endpos;
if(endpos > pos.end) {
Expand Down
3 changes: 2 additions & 1 deletion SubTabBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -816,6 +816,7 @@ protected void setupTableSearch(TableView tbl) {
subTabInfo.lstSearchTables.add(tbl);
}
};

// remove use one below!
protected void setTableSearchActive(TableView tbl, boolean value) {
if(value) {
Expand All @@ -825,7 +826,7 @@ protected void setTableSearchActive(TableView tbl, boolean value) {
}
else {
tbl.getStyleClass().removeAll("search-active");
tbl.setStyle("-fx-background-color: #FFFFF;");
tbl.setStyle("-fx-background-color: #FFFFF0;");
}
}
protected void setTableFiltered(TableView tbl, boolean filtered) {
Expand Down
1 change: 1 addition & 0 deletions Tappas.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public class Tappas extends Application {
// on the same project with multiple apps (could mess up the project data)
// I think in the new Java 9 release there might be some relevant functionality
//
//
// The app will check if APP_LOCK_FILE exists:
// a) if it does, it will get the port number from the file and try to lock it
// (just in case the app aborted and did not delete the file)
Expand Down
Loading

0 comments on commit 80ba4ec

Please sign in to comment.