@@ -5,7 +5,6 @@ import Facets from 'containers/SequenceSearch/components/Results/components/Face
5
5
import Hit from 'containers/SequenceSearch/components/Results/components/Hit.jsx' ;
6
6
7
7
import 'containers/SequenceSearch/components/Results/index.scss' ;
8
- import routes from 'services/routes.jsx' ;
9
8
import * as actionCreators from 'actions/actions' ;
10
9
11
10
@@ -40,9 +39,44 @@ class Results extends React.Component {
40
39
</ div >
41
40
)
42
41
}
42
+ {
43
+ this . props . rfam && (
44
+ ( this . props . infernal_status === "loading" || this . props . infernal_status === "success" ) && [
45
+ < h1 key = { `infernal-header` } className = "margin-top-large margin-bottom-large" > Rfam classification: { this . props . infernal_status === "loading" ? < i className = "animated infinite flash" > ...</ i > : '' } </ h1 > ,
46
+ < div key = { `infernal-div` } >
47
+ < table >
48
+ < thead >
49
+ < tr >
50
+ < th > Family</ th >
51
+ < th > Accession</ th >
52
+ < th > Start</ th >
53
+ < th > End</ th >
54
+ < th > Bit score</ th >
55
+ < th > E-value</ th >
56
+ < th > Strand</ th >
57
+ </ tr >
58
+ </ thead >
59
+ < tbody >
60
+ { this . props . infernal_entries . length ? this . props . infernal_entries . map ( ( entry , index ) => (
61
+ < tr key = { `${ index } ` } >
62
+ < td > { entry . description } </ td >
63
+ < td > { entry . accession_rfam } </ td >
64
+ < td > { entry . seq_from } </ td >
65
+ < td > { entry . seq_to } </ td >
66
+ < td > { entry . score } </ td >
67
+ < td > { entry . e_value } </ td >
68
+ < td > { entry . strand } </ td >
69
+ </ tr >
70
+ ) ) : < tr key = { "noResults" } > < td colSpan = "7" style = { { textAlign : 'center' } } > The query sequence did not match any Rfam families.</ td > </ tr > }
71
+ </ tbody >
72
+ </ table >
73
+ </ div >
74
+ ]
75
+ )
76
+ }
43
77
{
44
78
( this . props . status === "loading" || this . props . status === "success" || this . props . status === "partial_success" ) && [
45
- < h1 key = { `results-header` } className = "margin-top-large margin-bottom-large" > Results : { this . props . status === "loading" ? < i className = "animated infinite flash" > ...</ i > : < small > { this . props . hitCount } total </ small > } </ h1 > ,
79
+ < h1 key = { `results-header` } className = "margin-top-large margin-bottom-large" > Similar sequences : { this . props . status === "loading" ? < i className = "animated infinite flash" > ...</ i > : < small > { this . props . hitCount } </ small > } </ h1 > ,
46
80
< div key = { `results-div` } className = "small-12 medium-10 medium-push-2 columns" >
47
81
< section >
48
82
{ this . props . entries . map ( ( entry , index ) => (
@@ -51,7 +85,16 @@ class Results extends React.Component {
51
85
{ ( this . props . status === "success" || this . props . status === "partial_success" ) && ( this . props . entries . length < this . props . hitCount ) && ( < a className = "button small" onClick = { this . props . onLoadMore } target = "_blank" > Load more</ a > ) }
52
86
</ section >
53
87
</ div > ,
54
- < Facets key = { `results-facets` } facets = { this . props . facets } selectedFacets = { this . props . selectedFacets } toggleFacet = { this . toggleFacet } ordering = { this . props . ordering } textSearchError = { this . props . textSearchError } />
88
+ < div key = { `results-facets` } >
89
+ { this . props . entries ?
90
+ < Facets
91
+ facets = { this . props . facets }
92
+ selectedFacets = { this . props . selectedFacets }
93
+ toggleFacet = { this . toggleFacet }
94
+ ordering = { this . props . ordering }
95
+ textSearchError = { this . props . textSearchError }
96
+ /> : '' }
97
+ </ div >
55
98
]
56
99
}
57
100
</ div >
@@ -62,14 +105,16 @@ class Results extends React.Component {
62
105
function mapStateToProps ( state ) {
63
106
return {
64
107
status : state . status ,
108
+ infernal_status : state . infernal_status ,
65
109
sequence : state . sequence ,
66
110
entries : state . entries ,
67
111
facets : state . facets ,
68
112
selectedFacets : state . selectedFacets ,
69
113
hitCount : state . hitCount ,
70
114
ordering : state . ordering ,
71
115
textSearchError : state . textSearchError ,
72
- jobId : state . jobId
116
+ jobId : state . jobId ,
117
+ infernal_entries : state . infernal_entries ,
73
118
} ;
74
119
}
75
120
0 commit comments