From 32a603f1937ea62f2a07881de4529233a25524aa Mon Sep 17 00:00:00 2001 From: Blaise Li <blaise.li__git@nsup.org> Date: Tue, 26 Mar 2019 16:04:24 +0100 Subject: [PATCH] Some library files were not versionned. --- libdeseq/.gitignore | 11 +++++++++++ libsmallrna/.gitignore | 11 +++++++++++ snakemake_wrappers/includes/install.sh | 5 +++++ 3 files changed, 27 insertions(+) create mode 100644 libdeseq/.gitignore create mode 100644 libsmallrna/.gitignore create mode 100755 snakemake_wrappers/includes/install.sh diff --git a/libdeseq/.gitignore b/libdeseq/.gitignore new file mode 100644 index 0000000..b4e1667 --- /dev/null +++ b/libdeseq/.gitignore @@ -0,0 +1,11 @@ +# Compiled python modules. +*.pyc + +# Setuptools distribution folder. +/dist/ + +# Python egg metadata, regenerated from source files by setuptools. +/*.egg-info + +# Backups +*~ diff --git a/libsmallrna/.gitignore b/libsmallrna/.gitignore new file mode 100644 index 0000000..b4e1667 --- /dev/null +++ b/libsmallrna/.gitignore @@ -0,0 +1,11 @@ +# Compiled python modules. +*.pyc + +# Setuptools distribution folder. +/dist/ + +# Python egg metadata, regenerated from source files by setuptools. +/*.egg-info + +# Backups +*~ diff --git a/snakemake_wrappers/includes/install.sh b/snakemake_wrappers/includes/install.sh new file mode 100755 index 0000000..5ddc41a --- /dev/null +++ b/snakemake_wrappers/includes/install.sh @@ -0,0 +1,5 @@ +#!/bin/sh +python3.6 setup.py build_ext +# .egg-link does not work with PYTHONPATH ? +python3.6 -m pip install -e . +python3.6 -m pip install --no-deps --ignore-installed . -- GitLab