18225 and 18226 missing from project summary

Moderators: Site Moderators, FAHC Science Team

Post Reply
arisu
Posts: 466
Joined: Mon Feb 24, 2025 11:11 pm

18225 and 18226 missing from project summary

Post by arisu »

The series is 18224-18226. They all have project descriptions, but only 18224 has the project summary data. 18225 and 18226 are missing:

Code: Select all

$ python3 -q
>>> from requests import get
>>> r = get('https://assign1.foldingathome.org/api/project/summary').json()
>>> [p for p in r if p['id'] == 18224]
[{'id': 18224, 'title': 'p18224', 'ws': '158.130.118.25', 'public': True, 'beta': False, 'type': '0x23', 'credit': 206790, 'bonus': 0.75, 'timeout': 172800, 'deadline': 432000, 'atoms': 383200, 'contact': 'justinjm'}]
>>> [p for p in r if p['id'] == 18225]
[]
>>> [p for p in r if p['id'] == 18226]
[]
Because two of the projects don't have summary data, the apps and web client can't find information such as how many atoms is in this project, whether it is beta, who the contact is, etc.
muziqaz
Posts: 1722
Joined: Sun Dec 16, 2007 6:22 pm
Hardware configuration: 9950x, 7950x3D, 5950x, 5800x3D
7900xtx, RX9070, Radeon 7, 5700xt, 6900xt, RX 550 640SP
Location: London
Contact:

Re: 18225 and 18226 missing from project summary

Post by muziqaz »

These just landed internally ;)
In the future drop me a DM here regarding this matter.

Thanks for checking :)
FAH Omega tester
Image
muziqaz
Posts: 1722
Joined: Sun Dec 16, 2007 6:22 pm
Hardware configuration: 9950x, 7950x3D, 5950x, 5800x3D
7900xtx, RX9070, Radeon 7, 5700xt, 6900xt, RX 550 640SP
Location: London
Contact:

Re: 18225 and 18226 missing from project summary

Post by muziqaz »

Ah, I misread the numbers.
Anyways, reported to researcher
Thanks

P.S. I need to go back to school for some reading lessons.
It is possible those projects have been pulled from full fah. Project summary is for active projects only.
FAH Omega tester
Image
arisu
Posts: 466
Joined: Mon Feb 24, 2025 11:11 pm

Re: 18225 and 18226 missing from project summary

Post by arisu »

They might have been pulled. I thought I had a 18225 but it was actually a 18255. I need to go back for reading lessons too! :lol:
arisu
Posts: 466
Joined: Mon Feb 24, 2025 11:11 pm

Re: 18225 and 18226 missing from project summary

Post by arisu »

A quick check with a Python script accessing only the public API shows that there are many projects that are inactive but are listed as part of the series of active projects:

Code: Select all

12100-12112,12436,12460-12461,12482-12484,12604,12700-12702,14911-14938,14940-14944,14946-14954,14956,14960-14966,14968-14969,14972-14973,15001,16935,16958,16976,17927-17928,17932-17944,17946,18201-18211,18214-18223,18225-18226,18228-18229,18237,18239,18241,18245,18252-18254,18256-18261,18457-18458,18490-18493,18800,18810,19022,19204-19215,19221,19230,19500,19508-19599,19601-19699
So this must be the norm. Nothing to worry about it seems.
Post Reply