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

Fix Plate_3_prime metadata plate column bug in CellProfiler #48

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 2.cellprofiler_analysis/NF1_analysis_4channel.cppipe
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Metadata:[module_num:2|svn_version:'Unknown'|variable_revision_number:6|show_win
Metadata extraction method:Extract from file/folder names
Metadata source:Folder name
Regular expression to extract from file name:^(?P<Plate>.*)_(?P<Well>[A-P][0-9]{2})_s(?P<Site>[0-9])_w(?P<ChannelNumber>[0-9])
Regular expression to extract from folder name:Corrected_(?P<Plate>Plate_[0-9]{1})
Regular expression to extract from folder name:Corrected_(?P<Plate>Plate_3_prime|Plate_3|Plate_4|Plate_5)
Extract metadata from:All images
Select the filtering criteria:and (file does contain "")
Metadata file location:Elsewhere...|
Expand Down
Git LFS file not shown
12 changes: 3 additions & 9 deletions 2.cellprofiler_analysis/nf1_analysis.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -89,15 +89,9 @@
"name": "stdout",
"output_type": "stream",
"text": [
"{ 'Plate_3': { 'path_to_images': PosixPath('/home/jenna/nf1_cellpainting_data/1.cellprofiler_ic/Corrected_Images/Corrected_Plate_3'),\n",
" 'path_to_output': PosixPath('analysis_output/Plate_3'),\n",
" 'path_to_pipeline': PosixPath('/home/jenna/nf1_cellpainting_data/2.cellprofiler_analysis/NF1_analysis_4channel.cppipe')},\n",
" 'Plate_3_prime': { 'path_to_images': PosixPath('/home/jenna/nf1_cellpainting_data/1.cellprofiler_ic/Corrected_Images/Corrected_Plate_3_prime'),\n",
"{ 'Plate_3_prime': { 'path_to_images': PosixPath('/home/jenna/nf1_cellpainting_data/1.cellprofiler_ic/Corrected_Images/Corrected_Plate_3_prime'),\n",
" 'path_to_output': PosixPath('analysis_output/Plate_3_prime'),\n",
" 'path_to_pipeline': PosixPath('/home/jenna/nf1_cellpainting_data/2.cellprofiler_analysis/NF1_analysis_4channel.cppipe')},\n",
" 'Plate_4': { 'path_to_images': PosixPath('/home/jenna/nf1_cellpainting_data/1.cellprofiler_ic/Corrected_Images/Corrected_Plate_4'),\n",
" 'path_to_output': PosixPath('analysis_output/Plate_4'),\n",
" 'path_to_pipeline': PosixPath('/home/jenna/nf1_cellpainting_data/2.cellprofiler_analysis/NF1_analysis_4channel.cppipe')}}\n"
" 'path_to_pipeline': PosixPath('/home/jenna/nf1_cellpainting_data/2.cellprofiler_analysis/NF1_analysis_4channel.cppipe')}}\n"
]
}
],
Expand All @@ -110,7 +104,7 @@
" ).resolve(strict=True),\n",
" \"path_to_output\": pathlib.Path(f\"{output_dir}/{name}\"),\n",
" }\n",
" for name in plate_names if name in [\"Plate_3\", \"Plate_3_prime\", \"Plate_4\"] # focus on Plate_3, Plate_3_prime, and Plate_4\n",
" for name in plate_names if name in [\"Plate_3_prime\"] # focus on Plate_3_prime\n",
"}\n",
"\n",
"# iterate over the dictionary and add the path_to_pipeline specific for each plate\n",
Expand Down
2 changes: 1 addition & 1 deletion 2.cellprofiler_analysis/scripts/nf1_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
).resolve(strict=True),
"path_to_output": pathlib.Path(f"{output_dir}/{name}"),
}
for name in plate_names if name in ["Plate_3", "Plate_3_prime", "Plate_4"] # focus on Plate_3, Plate_3_prime, and Plate_4
for name in plate_names if name in ["Plate_3_prime"] # focus on Plate_3_prime
}

# iterate over the dictionary and add the path_to_pipeline specific for each plate
Expand Down
Loading