Page 1 of 1

18225 and 18226 missing from project summary

Posted: Wed May 14, 2025 9:37 am
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.

Re: 18225 and 18226 missing from project summary

Posted: Wed May 14, 2025 10:06 am
by muziqaz
These just landed internally ;)
In the future drop me a DM here regarding this matter.

Thanks for checking :)

Re: 18225 and 18226 missing from project summary

Posted: Wed May 14, 2025 10:42 am
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.

Re: 18225 and 18226 missing from project summary

Posted: Wed May 14, 2025 11:43 am
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:

Re: 18225 and 18226 missing from project summary

Posted: Thu May 15, 2025 2:59 am
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.