Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lst-analysis
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Alice Donini
lst-analysis
Commits
0df4a512
Commit
0df4a512
authored
2 years ago
by
Alice Donini
Browse files
Options
Downloads
Patches
Plain Diff
update tree script
parent
66cb0a27
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
create_analysis_tree.py
+11
-9
11 additions, 9 deletions
create_analysis_tree.py
with
11 additions
and
9 deletions
create_analysis_tree.py
+
11
−
9
View file @
0df4a512
...
...
@@ -37,7 +37,7 @@ def makedir(name):
# Create target Directory if don't exist
if
not
os
.
path
.
exists
(
name
):
os
.
makedirs
(
name
)
print
(
"
Directory
"
,
name
,
"
C
reated
"
)
print
(
"
Directory
"
,
name
,
"
c
reated
"
)
else
:
print
(
"
Directory
"
,
name
,
"
already exists
"
)
return
None
...
...
@@ -64,31 +64,33 @@ def main():
)
parser
.
add_argument
(
'
--night
'
,
type
=
str
,
required
=
True
,
dest
=
'
night
'
,
'
--night
'
,
nargs
=
'
+
'
,
type
=
int
,
required
=
True
,
dest
=
'
night
'
,
help
=
'
Night date
'
)
parser
.
add_argument
(
'
--version
'
,
type
=
str
,
required
=
False
,
dest
=
'
version
'
,
default
=
'
v0.9.2
'
,
help
=
'
lstchain version
'
default
=
'
v0.9.2
'
,
help
=
'
lstchain version
(default: %(default)s)
'
)
parser
.
add_argument
(
'
--cleaning
'
,
type
=
str
,
required
=
False
,
dest
=
'
cleaning
'
,
default
=
'
tailcut84
'
,
help
=
'
Cleaning type
'
default
=
'
tailcut84
'
,
help
=
'
Cleaning type
(default: %(default)s)
'
)
args
=
parser
.
parse_args
()
# Define analysis directories and subdirectories
data_dir
=
[
'
DL1
'
,
'
DL2
'
,
'
DL3
'
]
structure
=
f
'
{
args
.
source
}
/
{
args
.
night
}
/
{
args
.
version
}
/
{
args
.
cleaning
}
'
nights
=
args
.
night
for
folder
in
data_dir
:
dirName
=
os
.
path
.
join
(
f
'
{
args
.
main_dir
}
'
,
str
(
folder
),
structure
)
makedir
(
dirName
)
for
night
in
nights
:
structure
=
f
'
{
args
.
source
}
/
{
night
}
/
{
args
.
version
}
/
{
args
.
cleaning
}
'
for
folder
in
data_dir
:
dirName
=
os
.
path
.
join
(
f
'
{
args
.
main_dir
}
'
,
str
(
folder
),
structure
)
makedir
(
dirName
)
print
(
f
'
Directory structure
ready
for analysis on
{
args
.
source
}
.
'
)
print
(
f
'
Directory structure for analysis on
{
args
.
source
}
was created
.
'
)
if
__name__
==
"
__main__
"
:
...
...
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