Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

moved bdgenomics.adam package to bdgenomics-adam #1705

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
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