Skip to content

Commit

Permalink
add license header (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilkilic authored Jun 24, 2024
1 parent 730166e commit 8e16274
Show file tree
Hide file tree
Showing 5 changed files with 80 additions and 0 deletions.
16 changes: 16 additions & 0 deletions bluepyemodel/access_point/forge_access_point.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
"""NexusForgeAccessPoint class."""

"""
Copyright 2024 Blue Brain Project / EPFL
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""

import getpass
import json
import logging
Expand Down
16 changes: 16 additions & 0 deletions bluepyemodel/access_point/nexus.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
"""Access point using Nexus Forge"""

"""
Copyright 2024 Blue Brain Project / EPFL
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""

import copy
import logging
import os
Expand Down
16 changes: 16 additions & 0 deletions examples/local2nexus/export_local_to_nexus.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
"""Upload local models to nexus."""

"""
Copyright 2024, EPFL/Blue Brain Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""

import getpass
import os
from bluepyemodel.export_emodel.export_emodel import export_emodels_nexus
Expand Down
16 changes: 16 additions & 0 deletions examples/memodel/memodel.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
"""Get EModel, modify morphology, plot analysis and upload MEModel"""

"""
Copyright 2024, EPFL/Blue Brain Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""

# Attention! This will overwrite figures made with the same access point.
# It is highly recommended to clean the figures folder between two runs
# to avoid any leftover figure to be wrongly associated with a MEModel.
Expand Down
16 changes: 16 additions & 0 deletions examples/run_emodel/run_emodel.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
"""Running the emodel with BlueCelluLab"""

"""
Copyright 2024, EPFL/Blue Brain Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""

import argparse
import getpass
import glob
Expand Down

0 comments on commit 8e16274

Please sign in to comment.