Skip to content

Commit

Permalink
upgrade installation
Browse files Browse the repository at this point in the history
  • Loading branch information
tjiangHIT committed Sep 24, 2019
1 parent 487bcd6 commit 8c92ce5
Show file tree
Hide file tree
Showing 15 changed files with 17 additions and 22 deletions.
4 changes: 0 additions & 4 deletions INSTALL.sh

This file was deleted.

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ rMETL - realignment-based Mobile Element insertion detection Tool for Long read

$ git clone https://github.com/tjiangHIT/rMETL.git (git clone https://github.com/hitbc/rMETL.git)
$ cd rMETL/
$ bash INSTALL.sh
$ ./rMETL.py
$ pip install .

---
### Introduction
Expand Down
8 changes: 4 additions & 4 deletions src/rMETL/rMETL
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
'''

import argparse
import rMETL_extraction
import rMETL_realign
import rMETL_MEIcalling
from rMETL_version import __version__, __author__, __contact__
import rMETL.rMETL_extraction as rMETL_extraction
import rMETL.rMETL_realign as rMETL_realign
import rMETL.rMETL_MEIcalling as rMETL_MEIcalling
from rMETL.rMETL_version import __version__, __author__, __contact__

STAGES = {'detection': rMETL_extraction.run, \
'realignment': rMETL_realign.run, \
Expand Down
8 changes: 4 additions & 4 deletions src/rMETL/rMETL_MEIcalling.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
import cigar

from collections import Counter
from rMETL_version import __version__, __author__, __contact__
from rMETL_genotype import simple_call_genotype
from rMETL_cmdRunner import setupLogging
from rMETL_utils import load_ref
from rMETL.rMETL_version import __version__, __author__, __contact__
from rMETL.rMETL_genotype import simple_call_genotype
from rMETL.rMETL_cmdRunner import setupLogging
from rMETL.rMETL_utils import load_ref

USAGE="""\
_ ___ _ _____ _______ _
Expand Down
Binary file removed src/rMETL/rMETL_MEIcalling.pyc
Binary file not shown.
Binary file removed src/rMETL/rMETL_cmdRunner.pyc
Binary file not shown.
Binary file removed src/rMETL/rMETL_concensus.pyc
Binary file not shown.
10 changes: 5 additions & 5 deletions src/rMETL/rMETL_extraction.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
import gc

from multiprocessing import Pool
from rMETL_version import __version__, __author__, __contact__
from rMETL_concensus import construct_concensus_info
from rMETL_genotype import add_genotype
from rMETL_utils import load_ref, check_bai, call_ngmlr, call_samtools
from rMETL_cmdRunner import setupLogging, exe
from rMETL.rMETL_version import __version__, __author__, __contact__
from rMETL.rMETL_concensus import construct_concensus_info
from rMETL.rMETL_genotype import add_genotype
from rMETL.rMETL_utils import load_ref, check_bai, call_ngmlr, call_samtools
from rMETL.rMETL_cmdRunner import setupLogging, exe

USAGE="""\
_ ___ _ _____ _______ _
Expand Down
Binary file removed src/rMETL/rMETL_extraction.pyc
Binary file not shown.
Binary file removed src/rMETL/rMETL_genotype.pyc
Binary file not shown.
4 changes: 2 additions & 2 deletions src/rMETL/rMETL_realign.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
import sys
import time

from rMETL_version import __version__, __author__, __contact__
from rMETL_cmdRunner import setupLogging, exe
from rMETL.rMETL_version import __version__, __author__, __contact__
from rMETL.rMETL_cmdRunner import setupLogging, exe

USAGE="""\
_ ___ _ _____ _______ _
Expand Down
Binary file removed src/rMETL/rMETL_realign.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion src/rMETL/rMETL_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import logging
import os
from Bio import SeqIO
from rMETL_cmdRunner import exe
from rMETL.rMETL_cmdRunner import exe

def load_ref(ref_g):
logging.info("Loading reference genome...")
Expand Down
Binary file removed src/rMETL/rMETL_utils.pyc
Binary file not shown.
Binary file removed src/rMETL/rMETL_version.pyc
Binary file not shown.

0 comments on commit 8c92ce5

Please sign in to comment.