Skip to content
Snippets Groups Projects
Commit d88cefd3 authored by Wernle, Alexandra Nicole's avatar Wernle, Alexandra Nicole
Browse files

Changed channel argument to str. Changed some default values.

parent 777e7d45
No related branches found
No related tags found
1 merge request!344New MetadataAlgorithm, SpikesAlgorithm, and flag-spikes application
...@@ -2,7 +2,7 @@ import os ...@@ -2,7 +2,7 @@ import os
from datetime import datetime from datetime import datetime
import typer import typer
from typing import Optional, List from typing import Optional
from ..metadata import Metadata, MetadataFactory from ..metadata import Metadata, MetadataFactory
from ..algorithm.SpikesAlgorithm import SpikesAlgorithm from ..algorithm.SpikesAlgorithm import SpikesAlgorithm
...@@ -10,8 +10,8 @@ from ..algorithm.SpikesAlgorithm import SpikesAlgorithm ...@@ -10,8 +10,8 @@ from ..algorithm.SpikesAlgorithm import SpikesAlgorithm
def flag_spikes( def flag_spikes(
observatory: str = typer.Option(..., help="Observatory code"), observatory: str = typer.Option(..., help="Observatory code"),
channels: List[str] = typer.Option( channels: str = typer.Option(
default=["F"], help="Channels to despike, default is F." default=["F"], help="Channels to despike, default is F. Example input: HEZF"
), ),
starttime: datetime = typer.Option( starttime: datetime = typer.Option(
default=None, default=None,
...@@ -22,11 +22,11 @@ def flag_spikes( ...@@ -22,11 +22,11 @@ def flag_spikes(
help="End time for metadata, default is None. CLI example usage: --endtime '2024-01-01' ", help="End time for metadata, default is None. CLI example usage: --endtime '2024-01-01' ",
), ),
window_size: Optional[int] = typer.Option( window_size: Optional[int] = typer.Option(
default=10, default=1000,
help="Window size for despike algorithm", help="Window size for despike algorithm",
), ),
threshold: Optional[int] = typer.Option( threshold: Optional[int] = typer.Option(
default=3, default=6,
help="Threshold for spike size", help="Threshold for spike size",
), ),
metadata_token: str = typer.Option( metadata_token: str = typer.Option(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment