Metadata-Version: 2.1
Name: BGCfinder
Version: 0.0.0
Summary: Biosynthetic Gene Cluster finder with Graph Neural Network
Home-page: https://github.com/jihunni/BGCfinder
Author: Jihun Jeung
Author-email: jihun@gm.gist.ac.kr
License: MIT
Keywords: Biosynthetic Gene Cluster
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Classifier: Topic :: Scientific/Engineering :: Chemistry
Requires-Python: >=3
License-File: LICENSE.txt

# BGCfinder : Biosynthetic Gene Cluster detection with Graph Neural Network

BGCfinder detects biosynthetic gene clusters in bacterial genomes using deep learning. 
BGCfinder takes a fasta file containing bacterial protein coding sequences and embed each protein sequence into a graph. 
Graph Neural Network takes the graphs to detect biosynthetic gene cluster.

Author : Jihun Jeung, jihun@gm.gist.ac.kr, jeung4705@gmail.com, https://github.com/jihunni/BGCfinder

To run BGCfinder with a fasta file containing amino acid sequence with CPU,
```bash
python main.py data/test_run.fasta -o test_run.tsv -l test_run.log -d False
```

To run BGCfinder with a fasta file containing amino acid sequence with GPU,
```bash
python main.py data/test_run.fasta -o test_run.tsv -l test_run.log -d True
```
