Skip to content

Commit

Permalink
Clarify avoid N/A toggle
Browse files Browse the repository at this point in the history
  • Loading branch information
ericwang401 committed Mar 29, 2024
1 parent 14e2b06 commit 0233fb0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/routes/(default)/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang='ts'>
import InstallDepsCard from './InstallDepsCard.svelte'
import InputDataCard from './InputDataCard.svelte'
import InputDataCard from './SettingsCard.svelte'
import ProcessDataButton from './ProcessDataButton.svelte'
</script>
Expand Down
2 changes: 1 addition & 1 deletion src/routes/(default)/ProcessDataButton.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { Button } from '$lib/components/ui/button'
import { invoke } from '@tauri-apps/api/tauri'
import { toast } from 'svelte-sonner'
import { shouldRemoveNACalculations, toleranceMultiplier } from './InputDataCard.svelte'
import { shouldRemoveNACalculations, toleranceMultiplier } from './SettingsCard.svelte'
import { open } from '@tauri-apps/api/dialog'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
</Tooltip.Trigger>
<Tooltip.Content class='max-w-md'>
<p>SRM heuristically detects data pertaining to different charges for a given peptide. It uses
standard deviation times this multipler to determine which mass-charge ratio don't belong in the
standard deviation times this multipler to determine which mass-charge ratio don't belong in
the
same group. Adjust to what works, but 2.0 is recommended.</p>
</Tooltip.Content>
</Tooltip.Root>
Expand All @@ -45,7 +46,7 @@
</Tooltip.Trigger>
<Tooltip.Content class='max-w-md'>
<p>Removes samples with no detected peaks from the input for a given peptide to avoid "-nan(ind)"
calculations.</p>
calculations. This doesn't get rid of all "-nan(ind)" calculations but helps mitigate them.</p>
</Tooltip.Content>
</Tooltip.Root>
</div>
Expand Down

0 comments on commit 0233fb0

Please sign in to comment.