|
|
This is an automatically created page. Please do not edit this page.
|
|
|
|
|
|
# NOMAD software and source code release
|
|
|
|
|
|
This page tracks the progress of all relevant NOMAD software projects
|
|
|
towards public source code release as Open Source and
|
|
|
[APACHE 2.0](https://www.apache.org/licenses/LICENSE-2.0) licensed software.
|
|
|
|
|
|
## Purpose of the source code release
|
|
|
|
|
|
We as the NOMAD CoE want to make our work available for 3rd parties to use.
|
|
|
This means that 3rd parties need to access, understand, and are legally allowed
|
|
|
to use our work in the broadest possible context. This means we have to
|
|
|
make our source code publicly available, clean it up, and license the use of it.
|
|
|
|
|
|
**ALLOW OTHERS TO USE YOUR HARD WORK, LET IT LIVE ON, DON'T LET IT DIE IN VAIN.**
|
|
|
|
|
|
## What source code is going to be released
|
|
|
|
|
|
The basic assumption is that all NOMAD code is on this GITLab (gitlab.rzg.mpg.de).
|
|
|
The list at the bottom list all GITLab projects of the NOMAD organization.
|
|
|
Not all projects are necessary for 3rd parties to make use of NOMAD
|
|
|
(hackatons, forks, coordination projects, etc.). We will remove
|
|
|
unnecessary projects when they are identified.
|
|
|
|
|
|
## Who is responsible
|
|
|
|
|
|
Short answer: You should know if you are responsible for a source code project.
|
|
|
Its hard for us to point fingers to specific people due to the ad-hoc nature
|
|
|
of the GITLab use. The list below shows the owners, masters, developers of
|
|
|
each project, if this information was available. The list also shows the
|
|
|
main authors of recent commits. So if you find yourself in this list, please
|
|
|
feel responsible.
|
|
|
|
|
|
## When must this be done
|
|
|
|
|
|
We already have request from people that want to use NOMAD software. This is
|
|
|
also relevant to proof NOMAD's success for the next proposal. These are
|
|
|
**simple steps** there is not reason for postponing them.
|
|
|
Do them as soon as possible and within the next weeks.
|
|
|
|
|
|
## How to release your source code
|
|
|
|
|
|
**This is much simpler than it sounds.**
|
|
|
There are 4 simple steps that you have to take
|
|
|
|
|
|
0. Identify relevant projects
|
|
|
1. Apply a license to your code
|
|
|
2. Clean up your code
|
|
|
3. Document your code
|
|
|
4. Make your code publicly available
|
|
|
|
|
|
There will be (or already is) an **issue** called "Source code release" in each GITLab project.
|
|
|
You can use this for the following things
|
|
|
|
|
|
1. Comment to ask questions that are specific to your project
|
|
|
2. Comment to state that this project should not be made public, since it
|
|
|
is not a vital part of the overall NOMAD software
|
|
|
3. Comment to state that you have to use a different license than Apache 2.0
|
|
|
4. Close the issue to state that the process has been completed.
|
|
|
|
|
|
### Add the license
|
|
|
|
|
|
You MUST add a LICENSE file at the top level of each of your GITLab projects.
|
|
|
To apply the Apache 2.0 license (the default NOMAD has chosen) use this file:
|
|
|
|
|
|
[http://apache.org/licenses/LICENSE-2.0.txt](http://apache.org/licenses/LICENSE-2.0.txt)
|
|
|
|
|
|
If you interact much with code that has another license,
|
|
|
note that you can choose to use another compatible license:
|
|
|
|
|
|
[https://www.apache.org/legal/resolved.html#category-a](https://www.apache.org/legal/resolved.html#category-a)
|
|
|
|
|
|
Licenses outside that list should be used only with a very good reason.
|
|
|
Please comment your projects source release issue if you have to
|
|
|
diverge from the Apache 2.0 license.
|
|
|
|
|
|
You SHOULD claim the copyright.
|
|
|
|
|
|
All source code files should have the following header (python example)
|
|
|
as the very first thing in them
|
|
|
|
|
|
```
|
|
|
# Copyright 2016-2018 The NOMAD Developers Group
|
|
|
#
|
|
|
# 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.
|
|
|
```
|
|
|
|
|
|
You can adapt this for the comment format of other source code languages.
|
|
|
|
|
|
### clean up you code
|
|
|
|
|
|
You SHOULD clean up you code and make it something you are proud to show, and declare as yours.
|
|
|
|
|
|
For pyhton, [flake8](http://flake8.pycqa.org/en/latest/) (or [pylint](https://www.pylint.org/)) can help standardising the code.
|
|
|
We do not require all things they check, in particular I would *definitely* relax the maximum line length limit, and probably also the variable naming.
|
|
|
If someone is interested in tuning them and making them automatic would be welcome.
|
|
|
|
|
|
You MUST remove all private items (e.g. tokens, keys, other cryptographic information).
|
|
|
|
|
|
### Document your code
|
|
|
|
|
|
You SHOULD document your code where appropriate.
|
|
|
|
|
|
You MUST write a README file. Markdown (README.md) is the canonical format choice.
|
|
|
The README should explain the purpose of your code, the context it is supposed
|
|
|
to be used in, any requirements for using it, and how it can be used.
|
|
|
|
|
|
### Make your code publicly available
|
|
|
|
|
|
You MUST make your code publicly available. The gitlab.rzg.mpg.de is a public
|
|
|
source code hosting service. You just have to make your project public (instead of private or internal). Use
|
|
|
the settings section of your project on GITLab to achieve this.
|
|
|
|
|
|
## The list of all projects in the GITLab organisation NOMAD
|
|
|
|
|
|
### Explanations
|
|
|
|
|
|
The user row shows GITLab users associated with the project. It shows
|
|
|
either owner, masters, or developers depending of whats there.
|
|
|
Not all projects actually have members.
|
|
|
|
|
|
The committer row shows the top 3 authors of the last 100 commits.
|
|
|
These are not GITLab users, but the names used during commit git. These
|
|
|
names depend on how you setup your local git command.
|
|
|
|
|
|
The rows on READMEs and LICENSEs show if there are respective files
|
|
|
(with no, ".md", or ".txt" ending) in the master branch.
|
|
|
The numbers behind READMEs and LICENSEs are the size of the respective file
|
|
|
in bytes.
|
|
|
|
|
|
The commits row refers to the total number of commits in the repository.
|
|
|
|
|
|
|project|user|committer|license|readme|visibility|#commits|
|
|
|
|-------|----|---------|-------|------|----------|--------|
|
|
|
|**REPOSITORY**|||||||
|
|
|
|[nomad-repo](https://gitlab.mpcdf.mpg.de/nomad-lab/nomad-repo)|Nicolas Fabas [developer]|Arvid Ihrig [84], Fawzi Mohamed [16]|NO|NO|private|233|
|
|
|
|**ARCHIVE**|||||||
|
|
|
|[nomad-meta-info](https://gitlab.mpcdf.mpg.de/nomad-lab/nomad-meta-info)|Mohamed, Fawzi Roberto (fawzi) [master]|Arvid Ihrig [31], Fawzi Mohamed [16], lopa [16]|NO|NO|public|1109|
|
|
|
|[workflow](https://gitlab.mpcdf.mpg.de/nomad-lab/workflow)|Mohamed, Fawzi Roberto (fawzi) [master], Shin, Jungho (jungho) [master], Simoes Brambila, Danilo (brambila) [master]|Sastre, Alfonso (asastre) [17]|YES [5086]|NO|internal|17|
|
|
|
|**ENCYCLOPEDIA**|||||||
|
|
|
|[encyclopedia-dmss](https://gitlab.mpcdf.mpg.de/nomad-lab/encyclopedia-dmss)|Merkulow, Igor (mercury) [master], Vancea, Ioan (ivancea) [master]|Igor Merkulow [6], Ioan Vancea [5], Huhs, Georg (ghuhs) [1]|YES [18487]|NO|internal|13|
|
|
|
|[encyclopedia-gui](https://gitlab.mpcdf.mpg.de/nomad-lab/encyclopedia-gui)|Huhs, Georg (ghuhs) [master], Himanen, Lauri (himanel1) [master], Vancea, Ioan (ivancea) [master]|Hurtado, Iker (ikerh) [89], Vancea, Ioan (ivancea) [10], Lauri Himanen [1]|NO|NO|internal|304|
|
|
|
|[encyclopedia-infrastructure](https://gitlab.mpcdf.mpg.de/nomad-lab/encyclopedia-infrastructure)|Vancea, Ioan (ivancea) [master], Scheidgen, Markus (mscheidg) [master]|Vancea, Ioan (ivancea) [97], Markus Scheidgen [2], Lauri Himanen [1]|YES [776]|NO|private|134|
|
|
|
|[encyclopedia-physics-engine](https://gitlab.mpcdf.mpg.de/nomad-lab/encyclopedia-physics-engine)|Vancea, Ioan (ivancea) [master]|Vancea, Ioan (ivancea) [100]|YES [1862]|NO|internal|240|
|
|
|
|[encyclopedia-pre-processing](https://gitlab.mpcdf.mpg.de/nomad-lab/encyclopedia-pre-processing)|Himanen, Lauri (himanel1) [master], Glawe, Henning (heng) [master], Vancea, Ioan (ivancea) [master]|Markus Scheidgen [56], Georg Huhs [23], Daria M. Tomecka [14]|YES [18642]|NO|internal|1948|
|
|
|
|[encyclopedia-documentation](https://gitlab.mpcdf.mpg.de/nomad-lab/encyclopedia-documentation)|Vancea, Ioan (ivancea) [master], Scheidgen, Markus (mscheidg) [master]||NO|NO|private|NONE|
|
|
|
|[encyclopedia-general](https://gitlab.mpcdf.mpg.de/nomad-lab/encyclopedia-general)|Huhs, Georg (ghuhs) [master], Himanen, Lauri (himanel1) [master], Vancea, Ioan (ivancea) [master]|Huhs, Georg (ghuhs) [62], Georg Huhs [13], Martin Kuban [9]|YES [654]|NO|internal|388|
|
|
|
|**ANALYTICS**|||||||
|
|
|
|[nomad-notebook-base](https://gitlab.mpcdf.mpg.de/nomad-lab/nomad-notebook-base)|Ghiringhelli, Luca Massimiliano (lucamghi) [developer], Rupp, Matthias (mrupp) [developer]|Ankit Kariryaa [32], Fawzi Mohamed [11], ankit kariryaa [8]|NO|NO|private|55|
|
|
|
|[nomad-frontend](https://gitlab.mpcdf.mpg.de/nomad-lab/nomad-frontend)||Fawzi Mohamed [5], Tomster [1]|YES [1347]|NO|private|6|
|
|
|
|[notebook-nomad-query](https://gitlab.mpcdf.mpg.de/nomad-lab/notebook-nomad-query)|Benjamin Regler [master]|Benjamin Regler [16]|YES [7595]|YES [11357]|internal|11|
|
|
|
|[container-manager](https://gitlab.mpcdf.mpg.de/nomad-lab/container-manager)||Fawzi Mohamed [55], Ankit Kariryaa [28], Yazid [12]|NO|NO|private|98|
|
|
|
|[analytics-support-api](https://gitlab.mpcdf.mpg.de/nomad-lab/analytics-support-api)|Lucas Deecke [master]|Lucas Deecke [16], Fawzi Mohamed [12]|YES [111]|NO|private|28|
|
|
|
|[analytics-toolkit-tutorials](https://gitlab.mpcdf.mpg.de/nomad-lab/analytics-toolkit-tutorials)|Sven Lubeck [developer]|Angelo Ziletti [26], Fawzi Mohamed [16], Emre Ahmetcik [10]|NO|NO|private|168|
|
|
|
|[analytics-tools-forcefield](https://gitlab.mpcdf.mpg.de/nomad-lab/analytics-tools-forcefield)|Stella, Martina (stmar) [master], Fekete, Adam (afekete) [master]|Adam Fekete [23], Ádám Fekete [2]|YES [1782]|NO|private|25|
|
|
|
|[qmmlpack](https://gitlab.mpcdf.mpg.de/nomad-lab/qmmlpack)||Matthias Rupp [98], Rupp, Matthias (mrupp) [2]|YES [1329]|YES [555]|private|127|
|
|
|
|[sis-sa](https://gitlab.mpcdf.mpg.de/nomad-lab/sis-sa)|Ouyang, Runhai (orunh) [master]|Ouyang, Runhai (orunh) [95]|NO|NO|private|95|
|
|
|
|[soap-plus-plus](https://gitlab.mpcdf.mpg.de/nomad-lab/soap-plus-plus)|Poelking, Carl (pocar) [master]|Carl Poelking [76], capoe [21], GitHub [3]|YES [252]|NO|private|121|
|
|
|
|[structural-similarity](https://gitlab.mpcdf.mpg.de/nomad-lab/structural-similarity)|Mohamed, Fawzi Roberto (fawzi) [master], Ziletti, Angelo (ziang) [master]|Angelo Ziletti [78], Emre Ahmetcik [12], Daria M. Tomecka [5]|YES [95]|NO|private|644|
|
|
|
|**PARSERS**|||||||
|
|
|
|[python-common](https://gitlab.mpcdf.mpg.de/nomad-lab/python-common)||Lauri Himanen [33], Berk Onat [22], Henning Glawe [14]|YES [1017]|NO|public|407|
|
|
|
|[parser-abinit](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-abinit)|Glawe, Henning (heng) [master], Oliveira, Micael (micael) [master]|micaeljtoliveira [36], Micael Oliveira [21], Fawzi Mohamed [2]|YES [318]|NO|public|60|
|
|
|
|[parser-amber](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-amber)|Kermode, James (kjame) [master], Berk Onat [master]|Berk Onat [38], Fawzi Mohamed [1]|YES [1356]|YES [11339]|private|39|
|
|
|
|[parser-asap](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-asap)|Strange, Mikkel (smikk) [master]|Mikkel Strange [23], Fawzi Mohamed [5], Mohamed, Fawzi Roberto (fawzi) [2]|YES [302]|NO|public|30|
|
|
|
|[parser-atk](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-atk)|Strange, Mikkel (smikk) [master]|Mikkel Strange [23], Fawzi Mohamed [4], Mohamed, Fawzi Roberto (fawzi) [1]|YES [295]|NO|public|28|
|
|
|
|[parser-atomic-data](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-atomic-data)|Benjamin Regler [master]|Benjamin Regler [16], Fawzi Mohamed [1]|YES [8586]|YES [1309]|internal|17|
|
|
|
|[parser-big-dft](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-big-dft)|Himanen, Lauri (himanel1) [master], Kivistö, Sami Kristian (skkivist) [master]|Lauri Himanen [15], Fawzi Mohamed [3], Mohamed, Fawzi Roberto (fawzi) [1]|YES [1262]|NO|private|19|
|
|
|
|[parser-castep](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-castep)|Stella, Martina (stmar) [master]|Martina Stella [50], martina stella [43], Fawzi Mohamed [5]|YES [1260]|NO|public|249|
|
|
|
|[parser-cp2k](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-cp2k)|Himanen, Lauri (himanel1) [master]|Himanen, Lauri (himanel1) [46], Lauri Himanen [44], Fawzi Mohamed [6]|YES [2522]|NO|public|186|
|
|
|
|[parser-cpmd](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-cpmd)|Himanen, Lauri (himanel1) [master]|Lauri Himanen [29], Fawzi Mohamed [2], ankit kariryaa [1]|YES [1248]|NO|public|33|
|
|
|
|[parser-crystal](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-crystal)|Himanen, Lauri (himanel1) [master]|Sami Kivistö [19], Lauri Himanen [11], Fawzi Mohamed [7]|YES [1276]|NO|public|44|
|
|
|
|[parser-dftb-plus](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-dftb-plus)|Adriel Dominguez [master]|Fawzi Mohamed [6], Adriel Domínguez [5], Mohamed, Fawzi Roberto (fawzi) [3]|YES [276]|NO|public|14|
|
|
|
|[parser-dl-poly](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-dl-poly)|Poelking, Carl (pocar) [master]|Carl Poelking [14], Fawzi Mohamed [12], ankit kariryaa [6]|YES [618]|NO|public|36|
|
|
|
|[parser-dmol3](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-dmol3)|Shang, Honghui (hosha) [master]|Fawzi Mohamed [10], Honghui Shang [4], ankit kariryaa [3]|YES [1480]|NO|public|17|
|
|
|
|[parser-elastic](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-elastic)|Pardini, Lorenzo (lopa) [master]|lopa [12], Mohamed, Fawzi Roberto (fawzi) [3], Fawzi Mohamed [3]|YES [318]|NO|private|18|
|
|
|
|[parser-elk](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-elk)|Pardini, Lorenzo (lopa) [master]|lopa [24], Fawzi Mohamed [5], Lauri Himanen [1]|YES [298]|NO|private|31|
|
|
|
|[parser-exciting](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-exciting)|Pardini, Lorenzo (lopa) [master]|lopa [86], Fawzi Mohamed [11], ankit kariryaa [2]|YES [598]|NO|public|122|
|
|
|
|[parser-fhi-aims](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-fhi-aims)|Franz Knuth [master]|Franz Knuth [30], Fawzi Mohamed [29], Wael Chibani [16]|YES [1939]|NO|public|140|
|
|
|
|[parser-fleur](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-fleur)|Tomecka, Daria M. (datom) [master]|Daria Tomecka [20], Fawzi Mohamed [3], Tomecka, Daria M. (datom) [1]|YES [295]|NO|public|25|
|
|
|
|[parser-fplo](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-fplo)|Pardini, Lorenzo (lopa) [master], Tomecka, Daria M. (datom) [master]|Henning Glawe [99], Fawzi Mohamed [1]|YES [291]|NO|public|109|
|
|
|
|[parser-gamess](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-gamess)|Valero Montero, Rosendo (rvalero) [master]|rosendo [11], Fawzi Mohamed [2], Rosendo Valero Montero [2]|YES [311]|NO|public|18|
|
|
|
|[parser-gaussian](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-gaussian)|Valero Montero, Rosendo (rvalero) [master]|rosendo [21], Fawzi Mohamed [18], ankit kariryaa [9]|YES [597]|NO|public|50|
|
|
|
|[parser-gpaw](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-gpaw)|Strange, Mikkel (smikk) [master]|Mikkel Strange [41], Fawzi Mohamed [20], ankit kariryaa [5]|YES [584]|NO|public|77|
|
|
|
|[parser-gromacs](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-gromacs)|Strange, Mikkel (smikk) [master], Berk Onat [master]|Berk Onat [23], Mohamed, Fawzi Roberto (fawzi) [2], Fawzi Mohamed [1]|YES [1255]|YES [11339]|private|26|
|
|
|
|[parser-gulp](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-gulp)|Larsen, Ask Hjorth (askhl) [master]|Ask Hjorth Larsen [25], Fawzi Mohamed [4]|YES [13]|NO|public|29|
|
|
|
|[parser-lammps](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-lammps)|Riello, Massimo (mriello) [master]|Massimo Riello [53], Adam Fekete [33], Fawzi Mohamed [5]|YES [1265]|NO|public|184|
|
|
|
|[parser-lib-atoms](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-lib-atoms)|Poelking, Carl (pocar) [master]|pocar [6], Fawzi Mohamed [2], Mohamed, Fawzi Roberto (fawzi) [2]|YES [305]|NO|public|12|
|
|
|
|[parser-molcas](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-molcas)|Valero Montero, Rosendo (rvalero) [master]|Ask Hjorth Larsen [18], Fawzi Mohamed [3], Ankit Kariryaa [1]|YES [299]|NO|public|23|
|
|
|
|[parser-mopac](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-mopac)|Mortensen, Jens J. (jensj) [master]|Mikkel Strange [17], Fawzi Mohamed [5], ankit kariryaa [4]|YES [563]|NO|public|27|
|
|
|
|[parser-namd](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-namd)|Berk Onat [master]|Berk Onat [15], Fawzi Mohamed [1]|YES [1254]|NO|private|16|
|
|
|
|[parser-nwchem](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-nwchem)|Himanen, Lauri (himanel1) [master]|Lauri Himanen [22], Fawzi Mohamed [1]|YES [1267]|NO|public|23|
|
|
|
|[parser-octopus](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-octopus)|Larsen, Ask Hjorth (askhl) [master]|Ask Hjorth Larsen [43], Fawzi Mohamed [9], ankit kariryaa [6]|YES [630]|NO|public|59|
|
|
|
|[parser-onetep](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-onetep)|Mohamed, Fawzi Roberto (fawzi) [master], Riello, Massimo (mriello) [master], Stella, Martina (stmar) [master]|Martina Stella [57], martina stella [15], Fawzi Mohamed [7]|YES [903]|NO|public|80|
|
|
|
|[parser-orca](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-orca)|Alarcon Villaseca, Sebastian (sebas81) [master]|Sebastian Alarcon Villaseca [13], Sebastián Alarcón Villaseca [12], Fawzi Mohamed [8]|YES [119]|NO|public|43|
|
|
|
|[parser-phonopy](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-phonopy)|Kowalski, Hagen-Henrik (hagenhen) [master]|henrik [33], Fawzi Mohamed [17], Danio Brambila [1]|NO|NO|private|51|
|
|
|
|[parser-qbox](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-qbox)|Mohamed, Fawzi Roberto (fawzi) [master], Shang, Honghui (hosha) [master]|Honghui Shang [12], Fawzi Mohamed [7], ankit kariryaa [4]|YES [73]|NO|public|26|
|
|
|
|[parser-quantum-espresso](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-quantum-espresso)|Glawe, Henning (heng) [master]|Henning Glawe [97], Glawe, Henning (heng) [2], Fawzi Mohamed [1]|YES [645]|NO|public|667|
|
|
|
|[parser-quasi-harmonic-properties](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-quasi-harmonic-properties)|Kowalski, Hagen-Henrik (hagenhen) [master]|henrik [14], Fawzi Mohamed [6], Danio Brambila [2]|NO|NO|private|22|
|
|
|
|[parser-siesta](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-siesta)|Larsen, Ask Hjorth (askhl) [master]|Ask Hjorth Larsen [43], Mohamed, Fawzi Roberto (fawzi) [2], Fawzi Mohamed [1]|YES [330]|NO|public|46|
|
|
|
|[parser-smeagol](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-smeagol)|Larsen, Ask Hjorth (askhl) [master]|Ask Hjorth Larsen [1], Mohamed, Fawzi Roberto (fawzi) [1]|YES [336]|NO|private|2|
|
|
|
|[parser-turbomole](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-turbomole)|Franz Knuth [master], Ramakrishnan, Raghunathan (raghu) [master], Mazheika, Aliaksei (mazh) [master]|Arvid Ihrig [99], Fawzi Mohamed [1]|YES [603]|NO|public|166|
|
|
|
|[parser-vasp](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-vasp)||Fawzi Mohamed [48], Lauri Himanen [9], Danio Brambila [4]|YES [1205]|NO|public|65|
|
|
|
|[parser-wien2k](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-wien2k)|Tomecka, Daria M. (datom) [master]|Daria Tomecka [38], Fawzi Mohamed [4], Tomecka, Daria M. (datom) [4]|YES [298]|NO|public|49|
|
|
|
|[parser-tinker](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-tinker)|Berk Onat [master]||NO|NO|private|NONE|
|
|
|
|[parser-gromos](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-gromos)|Berk Onat [master]||NO|NO|private|NONE|
|
|
|
|[parser-charmm](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-charmm)|Berk Onat [master]||NO|NO|private|NONE|
|
|
|
|[parser-emto](https://gitlab.mpcdf.mpg.de/nomad-lab/parser-emto)|Smirnova, Ekaterina (katya) [master]|Smirnova, Ekaterina (katya) [1]|YES [237]|NO|private|1|
|
|
|
|[normalizer-band-structure](https://gitlab.mpcdf.mpg.de/nomad-lab/normalizer-band-structure)|Liu, Xiangyue (xyliu) [master]|Fawzi Mohamed [5], Mohamed, Fawzi Roberto (fawzi) [1]|YES [161]|NO|private|6|
|
|
|
|[normalizer-fhi-aims-basis](https://gitlab.mpcdf.mpg.de/nomad-lab/normalizer-fhi-aims-basis)|Simoes Brambila, Danilo (brambila) [master]|Fawzi Mohamed [7], Danio Brambila [5]|NO|NO|private|12|
|
|
|
|[normalizer-prototypes](https://gitlab.mpcdf.mpg.de/nomad-lab/normalizer-prototypes)|Tomecka, Daria M. (datom) [master]|Daria M. Tomecka [23], Fawzi Mohamed [4], Tomecka, Daria M. (datom) [2]|YES [982]|NO|private|28|
|
|
|
|[normalizer-repo](https://gitlab.mpcdf.mpg.de/nomad-lab/normalizer-repo)|Shin, Jungho (jungho) [master], Simoes Brambila, Danilo (brambila) [master]|Simoes Brambila, Danilo (brambila) [1]|NO|NO|private|1|
|
|
|
|[normalizer-repo-tags](https://gitlab.mpcdf.mpg.de/nomad-lab/normalizer-repo-tags)|Shin, Jungho (jungho) [master]|Jungho Shin [17], Fawzi Mohamed [5], Shin, Jungho (jungho) [2]|YES [28]|NO|private|24|
|
|
|
|[normalizer-springer](https://gitlab.mpcdf.mpg.de/nomad-lab/normalizer-springer)|Tomecka, Daria M. (datom) [master]|Fawzi Mohamed [8], Daria M. Tomecka [7], Tomecka, Daria M. (datom) [7]|YES [552]|NO|private|23|
|
|
|
|[normalizer-stats](https://gitlab.mpcdf.mpg.de/nomad-lab/normalizer-stats)||Fawzi Mohamed [7]|YES [647]|NO|private|7|
|
|
|
|[normalizer-symmetry](https://gitlab.mpcdf.mpg.de/nomad-lab/normalizer-symmetry)|Himanen, Lauri (himanel1) [master]|Lauri Himanen [9], Fawzi Mohamed [4], Mohamed, Fawzi Roberto (fawzi) [1]|YES [628]|NO|private|14|
|
|
|
|[normalizer-system-type](https://gitlab.mpcdf.mpg.de/nomad-lab/normalizer-system-type)||Arvid Ihrig [4], Fawzi Mohamed [3]|NO|NO|private|7|
|
|
|
|**MISC**|||||||
|
|
|
|[atomic-data](https://gitlab.mpcdf.mpg.de/nomad-lab/atomic-data)|Benjamin Regler [master]|Benjamin Regler [19]|YES [11201]|YES [1309]|internal|19|
|
|
|
|[atomic-metadata](https://gitlab.mpcdf.mpg.de/nomad-lab/atomic-metadata)|Ziletti, Angelo (ziang) [master], Gobre, Vivekanand (vigo) [master]|Gobre, Vivekanand (vigo) [78], Vivekanand Gobre [15], Fawzi Mohamed [2]|YES [4827]|NO|private|95|
|
|
|
|[nomad-emma-usecase](https://gitlab.mpcdf.mpg.de/nomad-lab/nomad-emma-usecase)|Alexandrov, Alexander (aalexand) [master], Kunft, Andreas (akunft) [master]|fschueler [44], Alexander Alexandrov [10]|YES [191]|YES [11325]|private|54|
|
|
|
|[nomad-lab-base](https://gitlab.mpcdf.mpg.de/nomad-lab/nomad-lab-base)|Kariryaa, Ankit (ankar) [master], Alexandrov, Alexander (aalexand) [master], Simoes Brambila, Danilo (brambila) [master]|Arvid Ihrig [67], Fawzi Mohamed [21], Berk Onat [11]|NO|YES [11525]|private|1677|
|
|
|
|[pymolfile](https://gitlab.mpcdf.mpg.de/nomad-lab/pymolfile)|Berk Onat [master]|Berk Onat [78]|YES [1901]|YES [5906]|public|78|
|
|
|
|[VR-demos](https://gitlab.mpcdf.mpg.de/nomad-lab/VR-demos)|Garcia-Hernandez, Ruben Jesus (rgarcia) [master]|Garcia-Hernandez, Ruben Jesus (rgarcia) [52], Ruben Garcia Hernndez [12]|YES [570]|NO|private|64|
|
|
|
|**HACKATONS**|||||||
|
|
|
|[Hackaton-Reporter](https://gitlab.mpcdf.mpg.de/nomad-lab/Hackaton-Reporter)||Jungho Shin [17], Shin, Jungho (jungho) [2], Ankit Kariryaa [1]|YES [13]|NO|internal|20|
|
|
|
|[Hackaton-FF-Fit](https://gitlab.mpcdf.mpg.de/nomad-lab/Hackaton-FF-Fit)||Ankit Kariryaa [1]|NO|NO|internal|1|
|
|
|
|[Hackaton-ActiCO2](https://gitlab.mpcdf.mpg.de/nomad-lab/Hackaton-ActiCO2)|Valero Montero, Rosendo (rvalero) [master], Larsen, Ask Hjorth (askhl) [master], de Armas, Carlos (cdearmas) [master]|carlos de armas [4], carlos manuel de armas morejon [4], Ask Hjorth Larsen [3]|YES [4053]|NO|internal|12|
|
|
|
|[Hackaton-LearnLat](https://gitlab.mpcdf.mpg.de/nomad-lab/Hackaton-LearnLat)||Ankit Kariryaa [1]|NO|NO|internal|1|
|
|
|
|[Hackaton-ClusterX](https://gitlab.mpcdf.mpg.de/nomad-lab/Hackaton-ClusterX)|Troppenz, Maria (mariat) [master], Rigamonti, Santiago (rsant) [master]|Maria Troppenz [46], Santiago Rigamonti [30], Martin Kuban [22]|YES [1329]|YES [154]|internal|360|
|
|
|
|[Hackaton-BI-SIS](https://gitlab.mpcdf.mpg.de/nomad-lab/Hackaton-BI-SIS)||Ankit Kariryaa [1]|NO|NO|internal|1|
|
|
|
|[Hackaton-RinseAndRepeat](https://gitlab.mpcdf.mpg.de/nomad-lab/Hackaton-RinseAndRepeat)||Ankit Kariryaa [1]|NO|NO|internal|1|
|
|
|
|[Hackaton-ErrorBars](https://gitlab.mpcdf.mpg.de/nomad-lab/Hackaton-ErrorBars)|Bieniek, Bjoern (biebj) [master], Strange, Mikkel (smikk) [master]|Bieniek, Bjoern (biebj) [34], Strange, Mikkel (smikk) [10], Mikkel Strange [4]|NO|NO|internal|48|
|
|
|
|[Hackaton-PTable](https://gitlab.mpcdf.mpg.de/nomad-lab/Hackaton-PTable)||Benjamin Regler [14], Ankit Kariryaa [1]|YES [6315]|YES [1309]|internal|11|
|
|
|
|[Hackaton-HStats](https://gitlab.mpcdf.mpg.de/nomad-lab/Hackaton-HStats)||Ankit Kariryaa [1]|NO|NO|internal|1|
|
|
|
|[Hackaton-GraphBrowser](https://gitlab.mpcdf.mpg.de/nomad-lab/Hackaton-GraphBrowser)||swagner-de [2], Ankit Kariryaa [1]|YES [197]|NO|private|3|
|
|
|
|[Hackaton-DataBrowser](https://gitlab.mpcdf.mpg.de/nomad-lab/Hackaton-DataBrowser)||Ankit Kariryaa [1]|NO|NO|internal|1|
|
|
|
|[Hackaton-VQuery](https://gitlab.mpcdf.mpg.de/nomad-lab/Hackaton-VQuery)|Poelking, Carl (pocar) [master], Flavio Giobergia [master]|Carl Poelking [7], fgiobergia [1], Ankit Kariryaa [1]|NO|NO|internal|9|
|
|
|
|**FORKS**|||||||
|
|
|
|[passport-saml](https://gitlab.mpcdf.mpg.de/nomad-lab/passport-saml)||Peter Loer [65], Vartan Simonian [3], Ashima Athri [3]|YES [11244]|YES [1093]|public|276|
|
|
|
|[h5py](https://gitlab.mpcdf.mpg.de/nomad-lab/h5py)||Andrew Collette [37], Aleksandar Jelenak [21], John Kirkham [7]|NO|NO|public|1432|
|
|
|
|[phonopy](https://gitlab.mpcdf.mpg.de/nomad-lab/phonopy)|Kowalski, Hagen-Henrik (hagenhen) [master]|Atsushi Togo [64], P.T. Jochym [33], Fawzi Mohamed [2]|YES [723]|NO|private|1647|
|
|
|
|**ANYTHING-ELSE**|||||||
|
|
|
|[nomad-stats](https://gitlab.mpcdf.mpg.de/nomad-lab/nomad-stats)||Yazid [70], Hamdi, Yazid (yhamdi) [14], Yazid Hamdi [1]|YES [3486]|NO|internal|85|
|
|
|
|[nomad-lab-glossary](https://gitlab.mpcdf.mpg.de/nomad-lab/nomad-lab-glossary)||Huhs, Georg (ghuhs) [2]|YES [500]|NO|internal|2|
|
|
|
|[md_data_access](https://gitlab.mpcdf.mpg.de/nomad-lab/md_data_access)|Berk Onat [master]||NO|NO|public|NONE|
|
|
|
|[apt](https://gitlab.mpcdf.mpg.de/nomad-lab/apt)|Leitherer, Andreas (leand) [master]|Andreas Leitherer [16], Angelo Ziletti [1], Hamdi, Yazid (yhamdi) [1]|YES [92]|NO|internal|19|
|
|
|
|[nomad-idp](https://gitlab.mpcdf.mpg.de/nomad-lab/nomad-idp)|Vathsavayi, Sri Harsha (sriv) [master]|Vathsavayi, Sri Harsha (sriv) [3], Harsha [1]|YES [4615]|NO|private|3|
|
|
|
|[magnet-project](https://gitlab.mpcdf.mpg.de/nomad-lab/magnet-project)|Tomecka, Daria M. (datom) [master]|Tomecka, Daria M. (datom) [63]|YES [1123]|NO|private|63|
|
|
|
|[archive-webpage-shiny](https://gitlab.mpcdf.mpg.de/nomad-lab/archive-webpage-shiny)||Sastre, Alfonso (asastre) [24]|YES [850]|NO|private|24|
|
|
|
|[tutorial-delta-ml](https://gitlab.mpcdf.mpg.de/nomad-lab/tutorial-delta-ml)|Larsen, Ask Hjorth (askhl) [master]|Ask Hjorth Larsen [14], Larsen, Ask Hjorth (askhl) [1], Fawzi Mohamed [1]|NO|NO|private|16|
|
|
|
|[analytics-dashboard](https://gitlab.mpcdf.mpg.de/nomad-lab/analytics-dashboard)||Fawzi Mohamed [9], Ankit Kariryaa [9], Yazid [4]|YES [1303]|NO|private|23|
|
|
|
|[springer-db-tools](https://gitlab.mpcdf.mpg.de/nomad-lab/springer-db-tools)|Tomecka, Daria M. (datom) [master]|Daria M. Tomecka [3], Daria Tomecka [1]|NO|NO|private|4|
|
|
|
|[creedo](https://gitlab.mpcdf.mpg.de/nomad-lab/creedo)|Kariryaa, Ankit (ankar) [master]||NO|NO|private|NONE|
|
|
|
|[infrastructure](https://gitlab.mpcdf.mpg.de/nomad-lab/infrastructure)|Zastrow, Thomas (thomz) [developer]|Sillanpaeae, Atte (asillanp) [4], Harsha [1]|YES [516]|NO|internal|5|
|
|
|
|[sample-parser](https://gitlab.mpcdf.mpg.de/nomad-lab/sample-parser)||Fawzi Mohamed [3]|YES [700]|NO|public|3|
|
|
|
|[support-general](https://gitlab.mpcdf.mpg.de/nomad-lab/support-general)|Berk Onat [master]|Ankit Kariryaa [9], Fawzi Mohamed [3], Berk Onat [1]|YES [217]|NO|internal|13|
|
|
|
|[public-wiki](https://gitlab.mpcdf.mpg.de/nomad-lab/public-wiki)|Rampp, Markus (mjr) [developer], Hokkanen, Jyrki (jhokkane) [developer]|Mohamed, Fawzi Roberto (fawzi) [1]|YES [140]|NO|public|1|
|
|
|
last change on 2018/02/23 |