• forked:motifRanking Ver.2
Import an externally hosted application
Check style

  • JavaScript
  • CSS
  • HTML
  • Images
  • Input Data
  • ReadMe
  • forked:motifRanking Ver.2
  • jquery-1.7.1.min.js  
  • jquery-ui-1.8.18.min.js  
  • http://code.highcharts.com/highcharts.js  
  • http://code.highcharts.com/modules/exporting.js  
  •  
  • history

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
 100
 
MotifRanking= function(containerId, options) {
    var app = new Application.motifRanking(containerId, options);
};
 
if (Application === "undefined" || !Application) {
    var Application = {};
}
 
 
Application.motifRanking = function() {
    this._init.apply(this, arguments);
};
 
Application.motifRanking.prototype = {
    
    _containerId : null,
    _baseSequence : null,
    _options : null,
    _tooltip : null,
    _motifProperty : null,
    _heptamer : null,
    _octamer : null,
    _appSequence : null,
    //_motifConflict : null,
    _motifViewDialogId : null,
    _addAnotherMotifDialogId : null,
    _motifConflictConfirmDialogId : null,
    _geneInfoContainerId : null,
    _motifView : null,
    _fixedSequence : null,
    _rankingOrder : null,
    
    _default : {
        appName : "MotifRanking",
        selectPropertyCaption : "Select Property",
        selectPropertyAreaClass : "selectPropertyArea",
        selectPropertyClass : "selectProperty",
 
        // 発現ランキング関係の定数
        selectRankingCaption : "Expression Ranking",
        selectRankingAreaClass : "selecRankingArea",
        selectRankingClass : "selectRanking",
        rankingRange : 10,
        
        // 順序選択関係の定数
        selectOrderCaption : "Order",
        selectOrderAreaClass : "selectOrderArea",
        selectOrderName : "selectOrder",
        topValue : "top",
        bottomValue : "bottom",
        topLabel : "Top",
        bottomLabel : "Bottom",
        
        resultAreaClass : "resultArea",
        replaceButtonAreaClass : "replaceButtonArea",
        replaceButtonClass : "replaceButton",
        nextButtonAreaClass : "nextButtonArea",
        replaceSequenceClass : "replaceSequence",
        fixedSequenceShowClass : "fixedSequenceMotif",
        wrappedMotifSequenceShowClass : "wrappedSequenceMotif",
        errorMessageAreaClass : "errorMessage",
        dialogErrorMessageClass : "dialogErrorMessage",
        dialogOutRangeValueMessage : "Please input a value between {0} and {1}",
        databaseInfoClass : "databaseInfo",
        addAnotherMotifButtonClass : "addAnotherMotifButton",
        geneLabelClass : "geneUrl",
        dbInfoLinkClass : "dbInfoLink",
        geneInfoLinkClass : "geneInfoLink",
        geneInfoAttedLinkClass : "geneInfoAttedLink",
        geneInfoPpdbLinkClass : "geneInfoPpdbLink",
        geneInfoEfpLinkClass : "geneInfoEfpLink",
        geneInfoHannaDbLinkClass : "geneInfoHannaDbLink",
        motifSequenceProperty : "motif sequence",
        motifPositionProperty : "motif position",
        typeProperty : "type",
        validType : "REG",
        motifViewDialogId : "motifViewDialog",
        motifViewDialogClass : "motifViewDialog",
        motifViewDialogTitle : "Motif View",
        conflictionDialogTitle : "Confliction",
        minSequenceClass : "minSeq",
        maxSequenceClass : "maxSeq",
        websiteNameAtted : "ATTED",
        websiteNamePpdb : "PPDB",
        geneTypeAtted : "ATTED",
        geneTypePpdb : "PPDB",
        baseSequenceMinLength : 50,
        dialogImageUrl : "http://app.linkdata.org/asset/a06f4de4.png",
        callback : function() {},
        loadingImageContainer : "loadingImageContainer",
        loadingImageUrl : "http://app.linkdata.org/asset/67556085.gif",
        loadingMessageClass : "loadingMessage",
        loadingMessage : "Loading linked data...",
        loadingMessageError : "There was an error with loading Linked data. Please refresh the browser",
        serverUrl : "http://linkdata.org/",
        resultAreaUserMessage : "Scroll Left/Right to inspect motifs from this promoter. click on motif sequence to enter advanced view",
        resultAreaUserMessageClass : "resultAreaUserMessageClass"
 
        
    },
jquery-1.7.1.min.js
jquery-ui-1.8.18.min.js
http://code.highcharts.com/highcharts.js
http://code.highcharts.com/modules/exporting.js
Playing...

jquery-1.7.1.min.js
jquery-ui-1.8.18.min.js
http://code.highcharts.com/highcharts.js
http://code.highcharts.com/modules/exporting.js