Skip to content

Fixing issue with Magma groups that are not Ids in Gap #6423

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

Merged
merged 7 commits into from
Jun 25, 2025
Merged
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
Prev Previous commit
Next Next commit
More helpful message
roed314 committed Jun 22, 2025
commit 420a177cd1838c04b151329d3b82b3bef817339e
6 changes: 5 additions & 1 deletion lmfdb/groups/abstract/main.py
Original file line number Diff line number Diff line change
@@ -2936,7 +2936,11 @@ def group_data(label, ambient=None, aut=False, profiledata=None):
# dealing with groups identified in magma but not in gap so can't do live pages˚
ord = label.split(".")[0]
if missing_subs(int(ord)) and gp.source == "Missing":
return Markup("No additional information for this group of order " + ord + " is available.")
ans = 'The group {} is not available in GAP, but see the list of <a href="{}">{}</a>.'.format(
label,
f"/Groups/Abstract/?subgroup_order={ord}&ambient={ambient}&search_type=Subgroups",
"subgroups with this order")
return Markup(ans)
ans = f"Group ${gp.tex_name}$: "
ans += create_boolean_string(gp, type="knowl")
ans += f"<br />Label: {gp.label}<br />"