Skip to content

Commit

Permalink
hello cenote-taker 3
Browse files Browse the repository at this point in the history
  • Loading branch information
mtisza1 committed Aug 14, 2023
1 parent 6866d4b commit aea9f47
Show file tree
Hide file tree
Showing 36 changed files with 9,176 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
blast_DBs/
cdd_rps_db/
hmmscan_DBs/
taxdump/
.DS_Store
**/.DS_Store
mmseqs_DBs/
pfam_32_db/


# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down
90 changes: 90 additions & 0 deletions dummy_template.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
Submit-block ::= {
contact {
contact {
name name {
last "Taker",
first "Cenote",
middle "",
initials "",
suffix "",
title ""
},
affil std {
affil "Cenote",
div "Taker 2",
city "Cenote",
sub "DC",
country "USA",
street "1000 Circle St.",
email "cenote@donotsubmit.net",
postal-code "31111"
}
}
},
cit {
authors {
names std {
{
name name {
last "Taker",
first "Cenote",
middle "",
initials "",
suffix "",
title ""
}
}
},
affil std {
affil "Cenote",
div "Taker 2",
city "Cenote",
sub "DC",
country "USA",
street "1000 Circle St.",
postal-code "31111"
}
}
},
subtype new
}
Seqdesc ::= pub {
pub {
gen {
cit "unpublished",
authors {
names std {
{
name name {
last "Taker",
first "Cenote",
middle "",
initials "",
suffix "",
title ""
}
}
}
},
title "Cenote-Taker 2 dummy template file. Do NOT submit"
}
}
}
Seqdesc ::= user {
type str "Submission",
data {
{
label str "AdditionalComment",
data str "ALT EMAIL:cenote@donotsubmit.net"
}
}
}
Seqdesc ::= user {
type str "Submission",
data {
{
label str "AdditionalComment",
data str "Submission Title:None"
}
}
}
Binary file added images/cenote-taker_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
38 changes: 38 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "cenotetaker3"
version = "3.0.0"
authors = [
{ name="Mike Tisza", email="michael.tisza@gmail.com" },
]
description = "Discover and annotate the virome."
readme = "README.md"
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"biopython",
]

[tool.setuptools.packages.find]
where = ["src"]

[tool.setuptools.package-data]
"cenotetaker3" = ["*.sbt", "*.sh"]

[tool.setuptools]
script-files = ["src/cenote/cenote_main.sh", "src/cenote/dummy_template.sbt"]

[project.scripts]
cenotetaker3 = "cenote:cenotetaker3"

[project.urls]
"Homepage" = "https://github.com/cmmr/Cenote-Taker3"
"Bug Tracker" = "https://github.com/cmmr/Cenote-Taker3/issues"
1 change: 1 addition & 0 deletions src/cenote/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .cenotetaker3 import cenotetaker3
Loading

0 comments on commit aea9f47

Please sign in to comment.