Skip to content
Closed
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,13 @@ def wizard_description():
'description': 'The source star to measure',
'name_lookup': True
},
'project_name': {
'name': 'Name your project',
'type': Format.STRING,
'description': 'Display name for the light curve output',
'required': False,
'default': '',
},
'input_files': {
'name': 'Input Files',
'description': 'The input FITS files with SCI and CAT extensions',
Expand Down Expand Up @@ -163,6 +170,7 @@ def operate(self, submitter: User):
'output_data': [
{
'source': source,
'project_name': self.input_data.get('project_name', ''),
'filter': filter_value,
'light_curve': [asdict(row) for row in result.light_curve_rows],
'selected_comparison_stars': [
Expand Down
Loading