From a2fe7801ca54e2d28b849954ff3e4ba5a5b6fea0 Mon Sep 17 00:00:00 2001
From: George Marchment <georgemarchment@yahoo.fr>
Date: Thu, 14 Mar 2024 13:23:39 +0100
Subject: [PATCH] Add zenodo link

---
 README.md              | 14 ++++++++++++--
 analysis_results.ipynb |  4 ++--
 2 files changed, 14 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index 0d180d9..8673971 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,15 @@
 # Github-Crawler
 
+
+[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-green.svg)](https://www.gnu.org/licenses/gpl-3.0) 
+
 >This branch corresponds to the results of the crawler for the study linked with [BioFlow-Insight](https://gitlab.liris.cnrs.fr/sharefair/bioflow-insight)
 
-[![MIT licensed](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE) 
+
+## Results of the crawler
+
+The crawler gathered 677 open license Nextflow workflows. A static version of this corpus can be found here: [https://zenodo.org/records/10817606](https://zenodo.org/records/10817606).
+
 
 ## Description
 
@@ -22,6 +29,7 @@ While the crawler is running, the data is saved in a JSON file.
 ## Table of Contents
 
 - [Github-Crawler](#github-crawler)
+  - [Results of the crawler](#results-of-the-crawler)
   - [Description](#description)
   - [Table of Contents](#table-of-contents)
   - [Installation](#installation)
@@ -33,7 +41,9 @@ The python function dependancies are described in the `requirements.txt` file.
 
 ## License
 
-This project is licensed under the [MIT License](https://opensource.org/licenses/MIT)
+This project is licensed under the [GNU Affero General Public License](https://www.gnu.org/licenses/agpl-3.0.en.html).
+
+
 
 ___
 
diff --git a/analysis_results.ipynb b/analysis_results.ipynb
index 5cc7985..a62ffb8 100644
--- a/analysis_results.ipynb
+++ b/analysis_results.ipynb
@@ -76,13 +76,13 @@
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "Hence, at least 93.1% of Nextflow workflows found on Github are not integrated into WorkflowHub\n"
+      "Hence, at most 6.9% of Nextflow workflows found on Github are integrated into WorkflowHub\n"
      ]
     }
    ],
    "source": [
     "nb_wfhub = 52\n",
-    "print(f\"Hence, at least {(len(dict)-nb_wfhub)/len(dict)*100:.1f}% of Nextflow workflows found on Github are not integrated into WorkflowHub\")"
+    "print(f\"Hence, at most {(nb_wfhub)/len(dict)*100:.1f}% of Nextflow workflows found on Github are integrated into WorkflowHub\")"
    ]
   },
   {
-- 
GitLab