Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improved delimiter sniffing for .csv files #210

Open
JensWendt opened this issue Aug 7, 2023 · 5 comments
Open

Improved delimiter sniffing for .csv files #210

JensWendt opened this issue Aug 7, 2023 · 5 comments

Comments

@JensWendt
Copy link
Contributor

Hello,

Adding to a previous discussion we had #195, I would like to propose an improvement to the delimiter sniffing technique we use.
Why do I come up with this now? Because @SchmChris found a .csv which could not be properly resolved with the current code.
the .csv in question: test.csv

the current code reads:

with open(temp_name, 'rt', encoding='utf-8-sig') as file_handle:
            try:
                delimiter = csv.Sniffer().sniff(
                    file_handle.read(500), ",;\t").delimiter
                print("Using delimiter: ", delimiter,
                      " after reading 500 characters")
            except Exception:
                file_handle.seek(0)
                try:
                    delimiter = csv.Sniffer().sniff(
                        file_handle.read(1000), ",;\t").delimiter
                    print("Using delimiter: ", delimiter,
                          " after reading 1000 characters")
                except Exception:
                    file_handle.seek(0)
                    try:
                        delimiter = csv.Sniffer().sniff(
                            file_handle.read(2000), ";,\t").delimiter
                        print("Using delimiter: ", delimiter,
                              " after reading 2000 characters")
                    except Exception:
                        print("Failed to sniff delimiter, using ','")
                        delimiter = ","
            # reset to start and read whole file...
            file_handle.seek(0)
            data = list(csv.reader(file_handle, delimiter=delimiter))

I propose ditching the fixed values of characters we feed into the sniffer and go for a dynamic approach where we read the first quarter, half , three quarters or the whole file.

from math import floor
with open("temp_name", 'rt', encoding='utf-8-sig') as file_handle:
    file_length = len(file_handle.read(-1))
    try:
        delimiter = csv.Sniffer().sniff(
            file_handle.read(floor(file_length/4)), ",;\t").delimiter
        print("Using delimiter: ", delimiter,
              f" after reading {floor(file_length/4)} characters")
    except Exception:
        file_handle.seek(0)
        try:
            delimiter = csv.Sniffer().sniff(
                file_handle.read(floor(file_length/2)), ",;\t").delimiter
            print("Using delimiter: ", delimiter,
                  f" after reading {floor(file_length/2)} characters")
        except Exception:
            file_handle.seek(0)
            try:
                delimiter = csv.Sniffer().sniff(
                    file_handle.read(floor(file_length*0.75)), ",;\t").delimiter
                print("Using delimiter: ", delimiter,
                      f" after reading {floor(file_length*0.75)} characters")
            except Exception:
                file_handle.seek(0)
                try:
                    delimiter = csv.Sniffer().sniff(
                        file_handle.read(file_length), ",;\t").delimiter
                    print("Using delimiter: ", delimiter,
                          " after reading all characters")
                except Exception:
                    print("Failed to sniff delimiter, using ','")
                    delimiter = ","
# reset to start and read whole file...
	file_handle.seek(0)
	data = list(csv.reader(file_handle, delimiter=delimiter))

This will cost maybe a bit more time, but will more reliably lead to a successful "sniffing" of the delimiter.

Does this sound like a good idea, am I missing some issue or is there maybe a more elegant approach to implement this?

When this more robust method is implemented (in whatever fashion) I would also like to adapt the code for populate_metadata.py and OMERO.parade to include this, as the delimiter-issue will come up for any german localized Excel version and possibly prevents new OMERO users from utilizing this part of the OMERO functionality.

@will-moore
Copy link
Member

This reminded me of a similar discussion about auto-detection of encoding for csv files at #198

Although now I read above a bit more carefully I see that the suggested changes are quite limited. Do you have an idea why the changes lead to a better outcome for the example csv? Does the existing code fail to read far enough, or does it choose an incorrect delimiter too early?

@JensWendt
Copy link
Contributor Author

JensWendt commented Aug 8, 2023

Yes, I followed that one closely as well, but fortunately this problem here seems less complicated.

The test.csv is a bit over 4100 characters long and has ~20 rows.
The header provides enzyme inhibitor as the last column, but actual data for that column only shows up at row 9.
Following the explanation found here (yeah, I know Quora is not the best source of information, but I found nothing else and the explanation makes sense ¯\_(ツ)_/¯ ) it seems the "variance" of the delimiter occurence is too high in the first 500 characters (roughly 5 rows) and 1000 characters (roughly 10 rows).
When I tell him "manually" to sniff the whole lenght he actually gives me back the correct ";", so it seems that the 2000 characters of the last nested try are just on the edge to not be enough to precisely determine the delimiter.

I assume that we will encounter .csvs in the future with gaps in the data causing "variance" and therefore now my proposed solution to dynamically go quarter, half, three quarters and ultimately full length of characters.
Hoping that if everything else fails just throw the whole thing into the sniffer and hope for the best.

I will try out a bit longer test.csv with more missing data values later on, just to see how it behaves and where the limits might be.

@JensWendt
Copy link
Contributor Author

JensWendt commented Aug 8, 2023

Okay, I played around quite a bit with differing amounts of missing values (represented by "<value>;;<value>;<value>;;" --> delimiters with nothing in between) and it seems like 50% is the sweet spot.
I "massacred" the data within reasonable limits and it mostly finds the delimiter after reading 50% of the characters, sometimes e.g. when I leave a column (or more) almost empty, it has to read 75%.

@JensWendt
Copy link
Contributor Author

Should I provide an official PR for this solution?

@will-moore
Copy link
Member

Hi @JensWendt yes please - I think that would be helpful for discussion and testing, thanks.

snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 7, 2023
Repository: ome/omero-scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (status: failure)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 187 jburel 'Rtd'

Generated by OMERO-python-superbuild-push#71 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/71/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 7, 2023
Repository: ome/scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (status: failure)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 187 jburel 'Rtd'

Generated by OMERO-plugins-push#45 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-plugins-push/45/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 7, 2023
Repository: ome/omero-scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (status: failure)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 187 jburel 'Rtd'

Generated by OMERO-python-superbuild-push#295 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/295/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 7, 2023
Repository: ome/scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (status: failure)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 187 jburel 'Rtd'

Generated by OMERO-plugins-push#250 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-plugins-push/250/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 8, 2023
Repository: ome/omero-scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (status: failure)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 187 jburel 'Rtd'

Generated by OMERO-python-superbuild-push#72 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/72/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 8, 2023
Repository: ome/scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (status: failure)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 187 jburel 'Rtd'

Generated by OMERO-plugins-push#46 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-plugins-push/46/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 8, 2023
Repository: ome/omero-scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (status: failure)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 187 jburel 'Rtd'

Generated by OMERO-python-superbuild-push#296 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/296/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 8, 2023
Repository: ome/scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (status: failure)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 187 jburel 'Rtd'

Generated by OMERO-plugins-push#251 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-plugins-push/251/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 9, 2023
Repository: ome/omero-scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (status: failure)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 187 jburel 'Rtd'

Generated by OMERO-python-superbuild-push#73 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/73/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 9, 2023
Repository: ome/scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (status: failure)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 187 jburel 'Rtd'

Generated by OMERO-plugins-push#47 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-plugins-push/47/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 10, 2023
Repository: ome/omero-scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (status: failure)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 187 jburel 'Rtd'

Generated by OMERO-python-superbuild-push#74 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/74/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 10, 2023
Repository: ome/scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (status: failure)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 187 jburel 'Rtd'

Generated by OMERO-plugins-push#48 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-plugins-push/48/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 11, 2023
Repository: ome/omero-scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (status: failure)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 187 jburel 'Rtd'

Generated by OMERO-python-superbuild-push#75 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/75/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 11, 2023
Repository: ome/scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (status: failure)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 187 jburel 'Rtd'

Generated by OMERO-plugins-push#49 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-plugins-push/49/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 12, 2023
Repository: ome/omero-scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (status: failure)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 187 jburel 'Rtd'

Generated by OMERO-python-superbuild-push#76 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/76/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 12, 2023
Repository: ome/scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (status: failure)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 187 jburel 'Rtd'

Generated by OMERO-plugins-push#50 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-plugins-push/50/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 13, 2023
Repository: ome/omero-scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (status: failure)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Updating 0ce3845..824d8a2
Previously merged:
  - PR 187 jburel 'Rtd'

Generated by OMERO-python-superbuild-push#77 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/77/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 13, 2023
Repository: ome/omero-scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (status: failure)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Updating 0ce3845..824d8a2
Previously merged:
  - PR 187 jburel 'Rtd'

Generated by OMERO-python-superbuild-push#297 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/297/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 13, 2023
Repository: ome/omero-scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (status: failure)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Already up-to-date.

Generated by OMERO-python-superbuild-push#298 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/298/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 13, 2023
Repository: ome/scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (status: failure)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Already up-to-date.

Generated by OMERO-plugins-push#252 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-plugins-push/252/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 14, 2023
Repository: ome/omero-scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (status: failure)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Already up-to-date.

Generated by OMERO-python-superbuild-push#78 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/78/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 14, 2023
Repository: ome/scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (status: failure)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Already up-to-date.

Generated by OMERO-plugins-push#51 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-plugins-push/51/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 14, 2023
Repository: ome/omero-scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (status: failure)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Already up-to-date.

Generated by OMERO-python-superbuild-push#299 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/299/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 14, 2023
Repository: ome/scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (status: failure)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Already up-to-date.

Generated by OMERO-plugins-push#253 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-plugins-push/253/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 26, 2023
Repository: ome/scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (user: will-moore)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (user: joshmoore)
Already up-to-date.

Generated by OMERO-plugins-push#1416 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-plugins-push/1416/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 26, 2023
Repository: ome/omero-scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Already up to date.

Conflicting PRs (not included):
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py'

Generated by OMERO-python-superbuild-push#7 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/7/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 26, 2023
Repository: ome/scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Already up to date.

Conflicting PRs (not included):
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py'

Generated by OMERO-plugins-push#4 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-plugins-push/4/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 28, 2023
Repository: ome/omero-scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Already up-to-date.

Conflicting PRs (not included):
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py'

Generated by OMERO-python-superbuild-push#310 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/310/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 28, 2023
Repository: ome/scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Already up-to-date.

Conflicting PRs (not included):
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py'

Generated by OMERO-plugins-push#266 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-plugins-push/266/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 28, 2023
Repository: ome/omero-scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (user: will-moore)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (user: joshmoore)
Already up-to-date.

Generated by OMERO-python-superbuild-push#1364 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/1364/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 28, 2023
Repository: ome/scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (user: will-moore)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (user: joshmoore)
Already up-to-date.

Generated by OMERO-plugins-push#1417 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-plugins-push/1417/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 29, 2023
Repository: ome/omero-scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Already up-to-date.

Conflicting PRs (not included):
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py'

Generated by OMERO-python-superbuild-push#311 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/311/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 29, 2023
Repository: ome/scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Already up-to-date.

Conflicting PRs (not included):
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py'

Generated by OMERO-plugins-push#267 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-plugins-push/267/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 29, 2023
Repository: ome/omero-scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Already up to date.

Conflicting PRs (not included):
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py'

Generated by OMERO-python-superbuild-push#8 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/8/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 29, 2023
Repository: ome/scripts
Excluded PRs:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints' (user: JensWendt)
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Already up to date.

Conflicting PRs (not included):
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py'

Generated by OMERO-plugins-push#5 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-plugins-push/5/)
will-moore added a commit that referenced this issue Sep 29, 2023
Solution for delimiter reading issue (#210) utilizing dynamic checkpoints
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 29, 2023
Repository: ome/omero-scripts
Excluded PRs:
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Updating 824d8a2..8bf8b9f
Previously merged:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints'

Merged PRs:
  - PR 212 jburel 'add entry for Jens'

Conflicting PRs (not included):
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py'

Generated by OMERO-python-superbuild-push#9 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/9/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 29, 2023
Repository: ome/scripts
Excluded PRs:
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Updating 824d8a2..8bf8b9f
Previously merged:
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints'

Merged PRs:
  - PR 212 jburel 'add entry for Jens'

Conflicting PRs (not included):
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py'

Generated by OMERO-plugins-push#6 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-plugins-push/6/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 30, 2023
Repository: ome/omero-scripts
Excluded PRs:
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Updating 824d8a2..d3fb626
Previously merged:
  - PR 212 jburel 'add entry for Jens'
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints'

Conflicting PRs (not included):
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py'

Generated by OMERO-python-superbuild-push#312 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/312/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 30, 2023
Repository: ome/scripts
Excluded PRs:
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Updating 824d8a2..d3fb626
Previously merged:
  - PR 212 jburel 'add entry for Jens'
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints'

Conflicting PRs (not included):
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py'

Generated by OMERO-plugins-push#268 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-plugins-push/268/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 30, 2023
Repository: ome/omero-scripts
Excluded PRs:
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Updating 824d8a2..d3fb626
Previously merged:
  - PR 212 jburel 'add entry for Jens'
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints'

Conflicting PRs (not included):
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py'

Generated by OMERO-python-superbuild-push#10 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/10/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Sep 30, 2023
Repository: ome/scripts
Excluded PRs:
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Updating 824d8a2..d3fb626
Previously merged:
  - PR 212 jburel 'add entry for Jens'
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints'

Conflicting PRs (not included):
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py'

Generated by OMERO-plugins-push#7 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-plugins-push/7/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Oct 1, 2023
Repository: ome/omero-scripts
Excluded PRs:
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Updating 824d8a2..d3fb626
Previously merged:
  - PR 212 jburel 'add entry for Jens'
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints'

Conflicting PRs (not included):
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py'

Generated by OMERO-python-superbuild-push#313 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/313/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Oct 1, 2023
Repository: ome/scripts
Excluded PRs:
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Updating 824d8a2..d3fb626
Previously merged:
  - PR 212 jburel 'add entry for Jens'
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints'

Conflicting PRs (not included):
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py'

Generated by OMERO-plugins-push#269 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-plugins-push/269/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Oct 1, 2023
Repository: ome/omero-scripts
Excluded PRs:
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Updating 824d8a2..d3fb626
Previously merged:
  - PR 212 jburel 'add entry for Jens'
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints'

Conflicting PRs (not included):
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py'

Generated by OMERO-python-superbuild-push#11 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/11/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Oct 1, 2023
Repository: ome/scripts
Excluded PRs:
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Updating 824d8a2..d3fb626
Previously merged:
  - PR 212 jburel 'add entry for Jens'
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints'

Conflicting PRs (not included):
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py'

Generated by OMERO-plugins-push#8 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-plugins-push/8/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Oct 1, 2023
Repository: ome/omero-scripts
Excluded PRs:
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (user: will-moore)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (user: joshmoore)
Updating 824d8a2..d3fb626
Previously merged:
  - PR 212 jburel 'add entry for Jens'
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints'

Generated by OMERO-python-superbuild-push#1365 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/1365/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Oct 2, 2023
Repository: ome/scripts
Excluded PRs:
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (user: will-moore)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (user: joshmoore)
Updating 824d8a2..d3fb626
Previously merged:
  - PR 212 jburel 'add entry for Jens'
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints'

Generated by OMERO-plugins-push#1418 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-plugins-push/1418/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Oct 2, 2023
Repository: ome/omero-scripts
Excluded PRs:
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Updating 824d8a2..d3fb626
Previously merged:
  - PR 212 jburel 'add entry for Jens'
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints'

Conflicting PRs (not included):
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py'

Generated by OMERO-python-superbuild-push#314 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/314/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Oct 2, 2023
Repository: ome/scripts
Excluded PRs:
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Updating 824d8a2..d3fb626
Previously merged:
  - PR 212 jburel 'add entry for Jens'
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints'

Conflicting PRs (not included):
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py'

Generated by OMERO-plugins-push#270 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-plugins-push/270/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Oct 2, 2023
Repository: ome/omero-scripts
Excluded PRs:
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Updating 824d8a2..d3fb626
Previously merged:
  - PR 212 jburel 'add entry for Jens'
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints'

Conflicting PRs (not included):
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py'

Generated by OMERO-python-superbuild-push#12 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/12/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Oct 2, 2023
Repository: ome/scripts
Excluded PRs:
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (exclude comment)
Updating 824d8a2..d3fb626
Previously merged:
  - PR 212 jburel 'add entry for Jens'
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints'

Conflicting PRs (not included):
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py'

Generated by OMERO-plugins-push#9 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-plugins-push/9/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Oct 7, 2023
Repository: ome/omero-scripts
Excluded PRs:
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (user: will-moore)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (user: joshmoore)
Updating 824d8a2..d3fb626
Previously merged:
  - PR 212 jburel 'add entry for Jens'
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints'

Generated by OMERO-python-superbuild-push#1366 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/1366/)
snoopycrimecop added a commit to snoopycrimecop/omero-scripts that referenced this issue Oct 8, 2023
Repository: ome/scripts
Excluded PRs:
  - PR 206 Rdornier 'Adding a script that saves data owner as key-value pair' (user: Rdornier)
  - PR 202 will-moore 'Add Plate support to KeyVal_to_csv.py' (user: will-moore)
  - PR 198 JulianHn 'Adding Support for different CSV Encodings in Import_Scripts/Populate_Metadata.py' (user: JulianHn)
  - PR 103 joshmoore 'Script for calculating min/max' (user: joshmoore)
Updating 824d8a2..d3fb626
Previously merged:
  - PR 212 jburel 'add entry for Jens'
  - PR 211 JensWendt 'Solution for delimiter reading issue (ome#210) utilizing dynamic checkpoints'

Generated by OMERO-plugins-push#1419 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-plugins-push/1419/)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants