Skip to content

Commit

Permalink
Fixed bedmaker bed format
Browse files Browse the repository at this point in the history
  • Loading branch information
khoroshevskyi committed Feb 21, 2024
1 parent 696e3a0 commit 57bc897
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion bedboss/bedmaker/bedmaker.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def make(self) -> dict:

return {
"bed_type": bed_type,
"file_type": file_type,
"file_type": format_type,
"genome": self.genome,
}

Expand Down
18 changes: 9 additions & 9 deletions bedboss/bedstat/models.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# from pydantic import BaseModel, ConfigDict, Field
#
#
# class BEDSTAT_RETURN(BaseModel):
# """
# Model of single namespace search result
# """
#
# ...
from pydantic import BaseModel, ConfigDict, Field


class BEDSTAT_RETURN(BaseModel):
"""
Model of single namespace search result
"""

...

0 comments on commit 57bc897

Please sign in to comment.