Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
wela
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Swain Lab
wela
Commits
cc097dcd
Commit
cc097dcd
authored
1 year ago
by
pswain
Browse files
Options
Downloads
Patches
Plain Diff
Tidied up run_gr and growth_rate
parent
67176e1a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dataloader.py
+1
-1
1 addition, 1 deletion
dataloader.py
examples/run_gr.py
+11
-4
11 additions, 4 deletions
examples/run_gr.py
growth_rate.py
+1
-9
1 addition, 9 deletions
growth_rate.py
with
13 additions
and
14 deletions
dataloader.py
+
1
−
1
View file @
cc097dcd
...
...
@@ -343,7 +343,7 @@ class dataloader:
Name of the file
"""
r_df
=
pd
.
read_csv
(
str
(
self
.
wdirpath
/
(
dataname
+
"
.tsv
"
)),
sep
=
"
\t
"
)
print
(
"
\n
l
oaded
"
,
dataname
)
print
(
"
\n
L
oaded
"
,
dataname
)
if
hasattr
(
self
,
"
r
"
):
# merge new data to current dataframe
self
.
df
=
pd
.
merge
(
self
.
df
,
r_df
,
how
=
"
left
"
)
...
...
This diff is collapsed.
Click to expand it.
examples/run_gr.py
+
11
−
4
View file @
cc097dcd
from
wela.growth_rate
import
find_all_grs
,
add_
to_dataloader
from
wela.growth_rate
import
find_all_grs
,
add_
gr_from_pkl
from
wela.dataloader
import
dataloader
run_GP
=
False
wdir
=
"
/Users/pswain/wip/tsv_data
"
datasets
=
[
"
Pdr5_3_11_22
"
,
"
Pdr5_flc_10ugml_1676
"
]
datasets
=
[
"
922_2023_03_03_pyrToGalplusGlc_00
"
,
"
1005_2023_03_09_exp_00_pyrToGalInduction
"
,
"
1574_2023_04_04_pyrTo0_1glc_00
"
,
"
1334_2023_03_28_pyrTo2Gal_01glc_00
"
,
]
# it is better to run dataloader first to generate a tsv file
# to run directly on h5 files, add use_tsv=False
...
...
@@ -18,6 +25,6 @@ for dataname in datasets:
# add pkl files to df
dl
=
dataloader
(
wdir
=
wdir
)
dl
.
load
(
dataname
,
use_tsv
=
True
)
add_
to_dataloader
(
dl
,
wdir
)
add_
gr_from_pkl
(
dl
,
wdir
)
# add data to existing tsv file
#
dl.save()
dl
.
save
()
This diff is collapsed.
Click to expand it.
growth_rate.py
+
1
−
9
View file @
cc097dcd
...
...
@@ -72,14 +72,6 @@ def find_all_grs(
plt
.
close
(
"
all
"
)
def
add_to_dataloader
(
dl
,
pkl_dir
=
"
.
"
,
savename
=
None
):
"""
Add data from pkl files to a dataloader
'
s data frame.
"""
addgrfrompkl
(
dl
,
pkl_dir
)
if
savename
is
None
:
savename
=
dl
.
dataname
dl
.
save
(
savename
)
def
find_gr
(
volume_df
,
buddings_df
=
None
,
...
...
@@ -251,7 +243,7 @@ def reNaN(oldlist, i_nan):
return
oldlist
def
addgrfrompkl
(
dl
,
pkldir
):
def
add
_
gr
_
from
_
pkl
(
dl
,
pkldir
):
"""
Load growth rate from pickle files.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment