Skip to main content
  • Home
  • Development
  • Documentation
  • Donate
  • Operational login
  • Browse the archive

swh logo
SoftwareHeritage
Software
Heritage
Archive
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

https://github.com/visdata/GeneticPrism
04 August 2025, 11:57:23 UTC
  • Code
  • Branches (1)
  • Releases (0)
  • Visits
    • Branches
    • Releases
    • HEAD
    • refs/heads/main
    No releases to show
  • 1d30736
  • /
  • README.md
Raw File Download Save again
Take a new snapshot of a software origin

If the archived software origin currently browsed is not synchronized with its upstream version (for instance when new commits have been issued), you can explicitly request Software Heritage to take a new snapshot of it.

Use the form below to proceed. Once a request has been submitted and accepted, it will be processed as soon as possible. You can then check its processing state by visiting this dedicated page.
swh spinner

Processing "take a new snapshot" request ...

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
  • directory
  • revision
  • snapshot
origin badgecontent badge
swh:1:cnt:d00da2374d32b03ca1ee0b1062fb33b835498db0
origin badgedirectory badge
swh:1:dir:1d30736b760f397891100c876b2a4275eaaf7134
origin badgerevision badge
swh:1:rev:29c7de3d1e970da6d4517634904ace6748a5079f
origin badgesnapshot badge
swh:1:snp:e93ae0eb6ea1680d34f168aa52b75c3e01a1b341

This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file.
Select below a type of object currently browsed in order to generate citations for them.

  • content
  • directory
  • revision
  • snapshot
(requires biblatex-software package)
Generating citation ...
(requires biblatex-software package)
Generating citation ...
(requires biblatex-software package)
Generating citation ...
(requires biblatex-software package)
Generating citation ...
Tip revision: 29c7de3d1e970da6d4517634904ace6748a5079f authored by sunieee on 23 July 2025, 15:39:24 UTC
Merge branch 'main' of https://github.com/visdata/GeneticPrism
Tip revision: 29c7de3
README.md
# GeneticPrism: Scholarly Research Evolution Visualization

![logo-search](https://github.com/user-attachments/assets/1793b109-d9bb-44c9-b72d-58958219b3ef)

## Introduction  
This repository hosts the code for the paper:  
**[GeneticPrism: Multifaceted Visualization of Citation-based Scholarly Research Evolution](https://arxiv.org/abs/2408.08912)**  

πŸ”— **Online System**: https://genetic-flow.com / https://geneticflow.ye-sun.com/

🎞️ **Demo Video**: https://youtu.be/zVbM7lgA6Ig

See [User Manual](https://github.com/visdata/GeneticPrism/wiki/User-Manual) and [Appendix](https://github.com/visdata/GeneticPrism/wiki/Appendix) in Wiki pages.

### Abstract  
Understanding the evolution of scholarly research is essential for academic decision-making (e.g., research planning and frontier exploration). Existing platforms like Google Scholar rely on abstract numerical indicators lacking contextual depth, while visualization approaches rarely leverage curated self-citation data to depict individual scholars’ evolution.  

This work introduces:  
- A **3D prism metaphor** visualizing scholars’ research profiles  
- A **scroll metaphor** visualizing structured topic evolution via **streamgraphs** and **inter-topic flow maps**  
- **Six-degree-impact glyphs** highlighting interdisciplinary breakthroughs  
- Evaluations through case studies (Turing Award laureates, visualization venues) and user studies  

## Dataset  
Processed from the open-source **Academic Graph**:  
- **v1** (up to Sept. 2022): process Microsoft Academic Graph (MAG) to construct GF Graph  (from [KDD’23 paper](https://dl.acm.org/doi/abs/10.1145/3580305.3599845), [github repo](https://github.com/sunieee/MAGProcessing))
- **v2** (up to Oct. 2024): MAG fused with [OpenAlex](https://openalex.org)

πŸ”— **Download v2 dataset**: [Hugging Face](https://huggingface.co/datasets/yesun/GeneticPrism)​. Due to the dataset's size, it is divided into two compressed archives.
- The ​`csv.tar.gz`​ contains CSV files covering all research fields ​except Artificial Intelligence (AI)​. After extraction, place these CSV files directly in your ​project root directory. 
- The ​`AI.tar.gz`​ contains ​only AI-related data​ – extract its CSV files into the project's ​`csv/`.

The system remains fully functional if only one archive (either AI or Non-AI) is installed, enabling flexible data management based on research needs.

## Deployment  

### Step 1: Data Preparation  
Place the extracted CSV files in the project root directory. The directory structure should look like this:  
```sh
GeneticPrism/
β”œβ”€β”€ csv/
β”‚   β”œβ”€β”€ AI/  # Contains AI-related data
β”‚   β”‚   β”œβ”€β”€ links/
β”‚   β”‚   β”œβ”€β”€ papers/
β”‚   β”‚   β”œβ”€β”€ paperIDDistribution.csv
β”‚   β”‚   β”œβ”€β”€ top_field_authors.csv
β”‚   β”‚   └── field_leaves.csv
β”‚   └── <field>     # Contains other research fields
β”‚       β”œβ”€β”€ links/
β”‚       β”œβ”€β”€ papers/
β”‚       └── ...
β”œβ”€β”€ manage.py
└── ...
```

### Step 2: Install Dependencies  
```bash
conda create -n GFVis python=3.11
conda activate GFVis
pip install -r requirements.txt
```

### Step 3: Run the Server  
**Option A: Direct run**  
```bash
python manage.py runserver 0.0.0.0:9001
```

**Option B: Background run (persistent)**  
```bash
nohup python manage.py runserver 0.0.0.0:9001 2>&1 &
```

- Access the system at: `http://<your-ip>:9001`  
- Use `ctrl + c` to terminate direct runs  
- Monitor background processes via `tail -f nohup.out`

back to top

Software Heritage β€” Copyright (C) 2015–2026, The Software Heritage developers. License: GNU AGPLv3+.
The source code of Software Heritage itself is available on our development forge.
The source code files archived by Software Heritage are available under their own copyright and licenses.
Terms of use: Archive access, APIβ€” Content policyβ€” Contactβ€” JavaScript license informationβ€” Web API