Skip to content
Merged
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
9 changes: 3 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.11"] # Adjust to your primary version
python-version: ["3.14"]

steps:
- name: Check out repository
Expand All @@ -30,9 +30,6 @@ jobs:
- name: Install the project
run: uv sync

- name: Run Pipeline (Annotate, FASTA, miRNA)
# This acts as our end-to-end integration test.
# Since it runs on a fresh machine, it WILL attempt to connect to S3
# anonymously, download the assets, and process test/tester.txt
- name: Run Pipeline
run: |
uv run main.py -c test_config.json -v 2 annotate fasta mirna
uv run main.py -c test_config.json -v 2 annotate -d 'arraystar,circbase' fasta -d 'arraystar,circbase' mirna -a 'miRanda,TargetScan' rbp
Binary file modified __pycache__/config.cpython-314.pyc
Binary file not shown.
6 changes: 3 additions & 3 deletions config.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
},
"samples": {
"vromann": {
"input": "test/vromann.txt",
"file_path": "test/vromann.txt",
"reference": "hg38",
"zero_based": true
},
"glioblastoma_plus_dcc": {
"input": "test/rnase_plus/glioblastoma_RNase_plus_dcc.txt",
"file_path": "test/rnase_plus/glioblastoma_RNase_plus_dcc.txt",
"reference": "hg38",
"zero_based": true
},
"glioblastoma_plus_ciriquant": {
"input": "test/rnase_plus/glioblastoma_RNase_plus_ciriquant.txt",
"file_path": "test/rnase_plus/glioblastoma_RNase_plus_ciriquant.txt",
"reference": "hg38",
"zero_based": true
}
Expand Down
6 changes: 3 additions & 3 deletions config.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
}

class ToolConfig(TypedDict, total=False):
input: List[str]
file_path: List[str]
reference: Union[str, List[str], None]
zero_based: Union[bool, List[bool], None]
max_tasks: int
Expand Down Expand Up @@ -74,14 +74,14 @@ def print_config_panel(config: ToolConfig, user_config_path: Optional[str] = Non

sample_table = Table(show_header=True, header_style="bold blue", box=box.ROUNDED, expand=True)
sample_table.add_column("Sample Name", style="bold green")
sample_table.add_column("Input File", style="yellow")
sample_table.add_column("File Path", style="yellow")
sample_table.add_column("Ref", style="cyan", justify="center")
sample_table.add_column("0-based", style="magenta", justify="center")

for sample_name, sample_info in config.get("samples", {}).items():
sample_table.add_row(
sample_name,
str(sample_info.get("input", sample_info.get("file_path", ""))),
str(sample_info.get("file_path", "")),
str(sample_info.get("reference", "")),
str(sample_info.get("zero_based", ""))
)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pycircdb"
version = "0.1.0"
version = "0.1.1"
description = "pycircdb: integrated circRNA database annotation for computational workflows."
readme = "README.md"
authors = [{ name = "Barry Digby", email = "b.digby237@gmail.com" }]
Expand Down
46 changes: 0 additions & 46 deletions results/glioblastoma_plus_ciriquant/arraystar.fasta

This file was deleted.

24 changes: 0 additions & 24 deletions results/glioblastoma_plus_ciriquant/arraystar_hits.txt

This file was deleted.

Loading
Loading