From 199d217ad9de1a4170e0ed8cf8139ee9c527c108 Mon Sep 17 00:00:00 2001 From: Blaise Li <blaise.li__git@nsup.org> Date: Thu, 11 Jul 2019 11:05:33 +0200 Subject: [PATCH] Adding README and .gitignore --- .gitignore | 14 ++++++++++++++ README.md | 13 +++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d8cee9f --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +# Compiled python modules. +*.pyc + +# Setuptools distribution and build folders. +/dist/ +/build/ + +# Python egg metadata, regenerated from source files by setuptools. +/*.egg-info + +# Backups +*~ +# Vim swap files +*.swp diff --git a/README.md b/README.md new file mode 100644 index 0000000..b92ab58 --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +# Utilities to generate stats and graphs from reads. + +This is a very preliminary version, with very few utilities. + + +## Installing + +Get the source using `git clone git@gitlab.pasteur.fr:bli/libreads.git`, `cd` into it and run `python3 -m pip install .` + +It might also work directly: + + python3 -m pip install git+ssh://git@gitlab.pasteur.fr/bli/libreads.git + -- GitLab