Skip to content

Commit

Permalink
fix imports (#270)
Browse files Browse the repository at this point in the history
  • Loading branch information
sherwoodf authored Dec 13, 2024
1 parent 5306a38 commit d751833
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
7 changes: 6 additions & 1 deletion bia-ingest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,13 @@ $ poetry run biaingest ingest <LIST OF STUDY ACCESSION IDs>
```
E.g:
```sh
$ poetry run biaingest ingest S-BIAD1285
$ poetry run biaingest ingest S-BIAD1285 S-BIAD1316
```
Or can input a file of newline separated accesssion ids with -f:
```sh
$ poetry run biaingest ingest -f input_files/ingested_submissions
```

By default this will create objects on disk (`--persistence-mode disk`).
This creates the following structure (using S-BIAD325 as an example):
```sh
Expand Down
3 changes: 1 addition & 2 deletions bia-ingest/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ packages = [{include = "bia_ingest"}]
[tool.poetry.dependencies]
python = "^3.10,<3.12"
requests = "^2.31.0"
pytest = "^7.0"
bia-shared-datamodels = { path = "../bia-shared-datamodels", develop = true }
bia-integrator-api = { path = "../clients/python", develop = true }
bia-test-data = { path = "../bia-test-data", develop = true }
Expand All @@ -25,7 +24,7 @@ biaingest = "bia_ingest.cli:app"

[tool.poetry.group.dev.dependencies]
ipython = "^8.22.1"
pyqt6 = "^6.8.0"
pytest = "^7.0"

[build-system]
requires = ["poetry-core"]
Expand Down

0 comments on commit d751833

Please sign in to comment.