From 21074c6e93b7a415c813f6e88f9840d0aa01a542 Mon Sep 17 00:00:00 2001 From: Momina Atif Dar <51847536+mominaadar@users.noreply.github.com> Date: Wed, 30 Oct 2024 15:46:24 +0100 Subject: [PATCH 1/8] Update journalStructure.md --- docs/journalStructure.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/docs/journalStructure.md b/docs/journalStructure.md index 12da8218..3a953a75 100644 --- a/docs/journalStructure.md +++ b/docs/journalStructure.md @@ -23,6 +23,8 @@ This document contains the structure of Journals having Impact Factor greater th * ProteomeXchange Consortium - PeptideAtlas: stores datasets focusing on peptide identifications and their associated spectral evidence * ImmPort (Immunology Database and Analysis Portal) * Zenodo +* China National GeneBank DataBase (CNGBdb) +* BioProject _________________________________________________________________ @@ -53,3 +55,25 @@ _________________________________________________________________ * not provided * available from authors upon request * no new code, used existing code + +## Science Immunology: IF 17.6 +* unable to access without institute registration + +## Other Nature journals: +* Nature Biotechnology: 68.2 +* Nature Medicine: 87.5 +* Nature Genetics: 31.7 +* Nature: 50.5 +* Nature Cell Biology: 17.3 +* Nature Neuroscience: 29.9 +* Nature Cancer: 38.7 +* Nature Methods: 36.1 +* Nature Metabolism: 25.5 +* Nature Protocols: 17.1 +* Nature Biomedical Engineering: 28.9 + +## Other Cell journals: +* Cancer Cell: 48.8 +* Immunity: 43.47 + + From 2fafe364973dceb9db1dc4fcaa04a7498a33f2bb Mon Sep 17 00:00:00 2001 From: Momina Atif Dar <51847536+mominaadar@users.noreply.github.com> Date: Wed, 30 Oct 2024 15:51:34 +0100 Subject: [PATCH 2/8] Update journalStructure.md --- docs/journalStructure.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/docs/journalStructure.md b/docs/journalStructure.md index 3a953a75..7ae65dd1 100644 --- a/docs/journalStructure.md +++ b/docs/journalStructure.md @@ -56,9 +56,6 @@ _________________________________________________________________ * available from authors upon request * no new code, used existing code -## Science Immunology: IF 17.6 -* unable to access without institute registration - ## Other Nature journals: * Nature Biotechnology: 68.2 * Nature Medicine: 87.5 @@ -76,4 +73,4 @@ _________________________________________________________________ * Cancer Cell: 48.8 * Immunity: 43.47 - +Note: Science journals cannot be accessed without Institution registration. From c328eba200e61aeaf5c43aa3c39cea9a94e1234d Mon Sep 17 00:00:00 2001 From: Momina Atif Dar <51847536+mominaadar@users.noreply.github.com> Date: Wed, 30 Oct 2024 15:53:29 +0100 Subject: [PATCH 3/8] Update journalStructure.md --- docs/journalStructure.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/journalStructure.md b/docs/journalStructure.md index 7ae65dd1..bb0dc88b 100644 --- a/docs/journalStructure.md +++ b/docs/journalStructure.md @@ -73,4 +73,4 @@ _________________________________________________________________ * Cancer Cell: 48.8 * Immunity: 43.47 -Note: Science journals cannot be accessed without Institution registration. +Note: Most of the Science journals cannot be accessed without Institution registration. From c3a37ba40e7dc997d5ed420b7a1ccca2add34d75 Mon Sep 17 00:00:00 2001 From: TripZz Date: Thu, 31 Oct 2024 00:31:20 +0100 Subject: [PATCH 4/8] NN-595 Implement document export window --- frontend/package.json | 3 + frontend/src/App.vue | 3 + frontend/src/assets/toolbar/word.png | Bin 0 -> 10686 bytes frontend/src/components/DocumentWindow.vue | 394 ++++++++++++++++++ frontend/src/components/PersistentWindow.vue | 33 +- .../components/toolbar/CitationToolBar.vue | 6 + .../src/components/toolbar/MainToolBar.vue | 8 +- .../src/components/toolbar/TermToolBar.vue | 6 + .../components/visualization/CitationVis.vue | 18 + .../src/components/visualization/MainVis.vue | 21 +- .../src/components/visualization/TermVis.vue | 16 + frontend/src/store/index.js | 5 + package-lock.json | 69 +++ package.json | 5 + 14 files changed, 583 insertions(+), 4 deletions(-) create mode 100644 frontend/src/assets/toolbar/word.png create mode 100644 frontend/src/components/DocumentWindow.vue create mode 100644 package-lock.json create mode 100644 package.json diff --git a/frontend/package.json b/frontend/package.json index 6c62e747..d120f190 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -15,9 +15,12 @@ "axios": "^1.7.4", "d3": "^7.9.0", "d3-scale": "^4.0.2", + "file-saver": "^2.0.5", "mitt": "^3.0.1", "ml-hclust": "^3.1.0", "nouislider": "^15.8.1", + "quill": "^2.0.2", + "quill-to-word": "^1.3.0", "random-color-rgb": "^1.1.1", "smallest-enclosing-circle": "^1.0.2", "validator": "^13.12.0", diff --git a/frontend/src/App.vue b/frontend/src/App.vue index b4f54788..3df487ba 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -1,6 +1,7 @@