Àlex Solé commited on
Commit
22953f5
·
1 Parent(s): 58deabf

added bibtex

Browse files
Files changed (2) hide show
  1. .gitignore +1 -0
  2. main.py +13 -10
.gitignore CHANGED
@@ -1,3 +1,4 @@
1
  .DS_Store
2
  *.pyc
3
  *.cif
 
 
1
  .DS_Store
2
  *.pyc
3
  *.cif
4
+ debug.ipynb
main.py CHANGED
@@ -23,7 +23,8 @@ def main(local):
23
 
24
  st.markdown("""
25
  <h3 align="center">
26
- 🌐 <a href="https://imatge-upc.github.io/CartNet/" target="_blank">Project</a> |
 
27
  🐙 <a href="https://github.com/imatge-upc/CartNet" target="_blank">GitHub</a>
28
  </h3>
29
  """, unsafe_allow_html=True)
@@ -61,6 +62,8 @@ def main(local):
61
  continue
62
 
63
  cif_data = cif[key]
 
 
64
  if "_diffrn_ambient_temperature" in cif_data.keys():
65
  temperature = float(cif_data["_diffrn_ambient_temperature"].split("(")[0])
66
  elif "_cell_measurement_temperature" in cif_data.keys():
@@ -118,15 +121,15 @@ def main(local):
118
  If you use CartNet in your research, please cite our paper:
119
 
120
  ```bibtex
121
- @article{your_paper_citation,
122
- title={Title of the Paper},
123
- author={Author1 and Author2 and Author3},
124
- journal={Journal Name},
125
- year={2023},
126
- volume={XX},
127
- number={YY},
128
- pages={ZZZ}
129
- }
130
  ```
131
  """)
132
 
 
23
 
24
  st.markdown("""
25
  <h3 align="center">
26
+ 🌐 <a href="https://imatge-upc.github.io/CartNet/" target="_blank">Project</a> |
27
+ 📄 <a href="https://pubs.rsc.org/en/content/articlelanding/2024/dd/d4dd00352g" target="_blank">Paper</a> |
28
  🐙 <a href="https://github.com/imatge-upc/CartNet" target="_blank">GitHub</a>
29
  </h3>
30
  """, unsafe_allow_html=True)
 
62
  continue
63
 
64
  cif_data = cif[key]
65
+ st.markdown(f"{cif_data.keys()}")
66
+ st.markdown(f"{cif_data['_atom_site_aniso_u_11']}")
67
  if "_diffrn_ambient_temperature" in cif_data.keys():
68
  temperature = float(cif_data["_diffrn_ambient_temperature"].split("(")[0])
69
  elif "_cell_measurement_temperature" in cif_data.keys():
 
121
  If you use CartNet in your research, please cite our paper:
122
 
123
  ```bibtex
124
+ @Article{D4DD00352G,
125
+ author ="Solé, Àlex and Mosella-Montoro, Albert and Cardona, Joan and Gómez-Coca, Silvia and Aravena, Daniel and Ruiz, Eliseo and Ruiz-Hidalgo, Javier",
126
+ title ="A Cartesian encoding graph neural network for crystal structure property prediction: application to thermal ellipsoid estimation",
127
+ journal ="Digital Discovery",
128
+ year ="2025",
129
+ pages ="-",
130
+ publisher ="RSC",
131
+ doi ="10.1039/D4DD00352G",
132
+ url ="http://dx.doi.org/10.1039/D4DD00352G",}
133
  ```
134
  """)
135