Skip to content

Commit

Permalink
moved bdgenomics.adam package to bdgenomics-adam
Browse files Browse the repository at this point in the history
  • Loading branch information
akmorrow13 committed Aug 30, 2017
1 parent 511f925 commit 677241a
Show file tree
Hide file tree
Showing 14 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion adam-python/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ The 'clean' target undoes the effect of 'develop'.

The 'test' target runs ADAM's unit tests. Set the 'tests' variable to run a particular test, e.g.

make test tests=src/adam/test/sort/sortTest.py::SortTest::testSort
make test tests=src/bdgenomics_adam/test/sort/sortTest.py::SortTest::testSort

The 'pypi' target publishes the current commit of ADAM to PyPI after enforcing that the working
copy and the index are clean, and tagging it as an unstable .dev build.
Expand Down
2 changes: 1 addition & 1 deletion adam-python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from version import version as adam_version

setup(
name='bdgenomics.adam',
name='bdgenomics_adam',
version=adam_version,
description='A fast, scalable genome analysis system',
author='Frank Austin Nothaft',
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# limitations under the License.
#

from bdgenomics.adam.rdd import AlignmentRecordRDD, \
from bdgenomics_adam.rdd import AlignmentRecordRDD, \
CoverageRDD, \
FeatureRDD, \
FragmentRDD, \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from pyspark.rdd import RDD
from pyspark.sql import DataFrame, SQLContext

from bdgenomics.adam.stringency import LENIENT, _toJava
from bdgenomics_adam.stringency import LENIENT, _toJava

_log = logging.getLogger(__name__)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
#


from bdgenomics.adam.adamContext import ADAMContext
from bdgenomics.adam.test import SparkTestCase
from bdgenomics_adam.adamContext import ADAMContext
from bdgenomics_adam.test import SparkTestCase


class ADAMContextTest(SparkTestCase):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
#


from bdgenomics.adam.adamContext import ADAMContext
from bdgenomics.adam.rdd import AlignmentRecordRDD, CoverageRDD
from bdgenomics.adam.test import SparkTestCase
from bdgenomics_adam.adamContext import ADAMContext
from bdgenomics_adam.rdd import AlignmentRecordRDD, CoverageRDD
from bdgenomics_adam.test import SparkTestCase

from pyspark.sql.types import DoubleType

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
#


from bdgenomics.adam.adamContext import ADAMContext
from bdgenomics.adam.test import SparkTestCase
from bdgenomics_adam.adamContext import ADAMContext
from bdgenomics_adam.test import SparkTestCase


class FeatureRDDTest(SparkTestCase):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
#


from bdgenomics.adam.adamContext import ADAMContext
from bdgenomics.adam.test import SparkTestCase
from bdgenomics_adam.adamContext import ADAMContext
from bdgenomics_adam.test import SparkTestCase


class GenotypeRDDTest(SparkTestCase):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
#


from bdgenomics.adam.adamContext import ADAMContext
from bdgenomics.adam.test import SparkTestCase
from bdgenomics_adam.adamContext import ADAMContext
from bdgenomics_adam.test import SparkTestCase


class VariantRDDTest(SparkTestCase):
Expand Down

0 comments on commit 677241a

Please sign in to comment.